* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b1b1b;
  text-decoration: none;
}

.site-header {
  background-color: #f7f4ef;
  border-bottom: 1px solid #e0dbd2;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 8vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #4f4a43;
  max-width: 320px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  background-color: #1b1b1b;
  color: #f7f4ef;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
}

main {
  padding-bottom: 80px;
}

.section {
  padding: 72px 8vw;
}

.section.bg-soft {
  background-color: #efe8dd;
}

.section.bg-deep {
  background-color: #1b1b1b;
  color: #f7f4ef;
}

.section.bg-image-one {
  background-color: #1d1f22;
  background-image: url("https://images.unsplash.com/photo-1523217582562-09d0def993a6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4ef;
}

.split-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.media-box {
  background-color: #d9d3c8;
  border-radius: 18px;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #6b6258;
}

.section.bg-deep .eyebrow,
.section.bg-image-one .eyebrow {
  color: #d7d3cb;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  background-color: #1b1b1b;
  color: #f7f4ef;
  cursor: pointer;
  font-size: 0.95rem;
}

.button-outline {
  border: 1px solid #1b1b1b;
  background-color: transparent;
  color: #1b1b1b;
  padding: 10px 18px;
  border-radius: 999px;
}

.button-light {
  border: 1px solid #f7f4ef;
  background-color: transparent;
  color: #f7f4ef;
  padding: 10px 18px;
  border-radius: 999px;
}

.list {
  padding-left: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background-color: #f7f4ef;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid #d9d3c8;
}

.section.bg-deep .pill {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f7f4ef;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  border: 1px solid #e0dbd2;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fdfbf7;
}

.service-card img {
  height: 180px;
  width: 100%;
}

.service-card .card-body {
  padding: 18px;
}

.price {
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d0c7bb;
  font-size: 1rem;
  background-color: #fff;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  padding: 40px 8vw;
  background-color: #1b1b1b;
  color: #f7f4ef;
}

.footer a {
  color: #f7f4ef;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #f7f4ef;
  border: 1px solid #d0c7bb;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.legal-panel {
  flex: 1 1 320px;
}

.muted {
  color: #6b6258;
}
