* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f7f3ef;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #f7f3ef;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.82rem;
  color: #5b4f48;
  margin-left: 16px;
}

.hero {
  position: relative;
  padding: 120px 6vw 140px;
  color: #fefcf9;
  background-color: #3a3a3a;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.5);
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #1c1c1c;
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn-alt {
  background: #b86b3c;
  color: #fff;
}

.section {
  padding: 80px 6vw;
}

.section.alt {
  background: #fff7f1;
}

.asym-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.asym-text {
  flex: 1 1 320px;
}

.asym-image {
  flex: 1 1 280px;
  transform: translateY(18px);
  background: #d6cbc3;
  padding: 10px;
}

.asym-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 28px;
  border: 1px solid #e3d7cf;
  transform: translateY(-12px);
}

.offset-card.mid {
  transform: translateY(12px);
}

.offset-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 14px;
  background: #e4d9d0;
}

.split-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.split-stack .stack-item {
  flex: 1 1 280px;
  background: #f1e7de;
  padding: 24px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border: 1px solid #e7d8cc;
  padding: 24px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 16px;
  background: #ded2c9;
}

.price {
  font-weight: 700;
  color: #b86b3c;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border: 1px solid #eadfd8;
}

.process-step span {
  font-weight: 700;
  color: #1c1c1c;
  font-size: 1.1rem;
}

.form-shell {
  background: #1c1c1c;
  color: #fff;
  padding: 36px;
}

.form-shell form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px;
  border: none;
  font-size: 1rem;
}

.form-shell button {
  padding: 14px;
  background: #b86b3c;
  color: #fff;
  border: none;
  cursor: pointer;
}

.media-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.media-strip img {
  flex: 1 1 260px;
  height: 220px;
  background: #d6c9be;
}

.quote {
  font-style: italic;
  background: #fff;
  padding: 24px;
  border-left: 4px solid #b86b3c;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  padding: 12px 18px;
  background: #b86b3c;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.footer {
  padding: 40px 6vw;
  background: #161513;
  color: #fefcf9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d4c9c2;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid #d6c7bc;
  padding: 18px;
  max-width: 360px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #1c1c1c;
  color: #fff;
}

.cookie-reject {
  background: #d4c9c2;
  color: #1c1c1c;
}

.page-hero {
  padding: 90px 6vw 70px;
  background: #efe4db;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.contact-card {
  background: #fff;
  padding: 28px;
  border: 1px solid #e4d7cd;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bg-context {
  background-color: #2f2b28;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-context .section-inner {
  background: rgba(15, 15, 15, 0.7);
  padding: 40px;
}

.section-inner {
  max-width: 980px;
}
