* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4ef;
  --ink: #1f1f1d;
  --muted: #6c6a66;
  --accent: #8b5a2b;
  --accent-dark: #6f461f;
  --panel: #ffffff;
  --sand: #efe7dc;
  --stone: #e1dad0;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--stone);
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--panel);
}

.split-section {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin: 50px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bg-sand-1 {
  background-color: #d8cfc4;
}

.bg-sand-2 {
  background-color: #e6ddd3;
}

.bg-sand-3 {
  background-color: #ded5cb;
}

.bg-sand-4 {
  background-color: #d8d0c6;
}

.bg-sand-5 {
  background-color: #e4dbd2;
}

.bg-sand-6 {
  background-color: #d9d1c6;
}

.hero {
  background: var(--panel);
  border-radius: 28px;
  overflow: hidden;
}

.hero-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
  display: inline-block;
  padding-bottom: 2px;
}

.panel {
  background: var(--panel);
  padding: 32px;
  border-radius: 20px;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric {
  flex: 1;
  min-width: 180px;
  background: var(--sand);
  border-radius: 16px;
  padding: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
}

.service-item img {
  width: 160px;
  height: 110px;
  border-radius: 12px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: 8px;
}

.testimonial {
  background: var(--sand);
  border-radius: 18px;
  padding: 22px;
}

.mt-16 {
  margin-top: 16px;
}

.form-wrap {
  background: var(--panel);
  padding: 32px;
  border-radius: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid var(--stone);
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 24px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #11110f;
  color: #fff;
  padding: 16px 24px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-banner button {
  background: #fff;
  color: #11110f;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 8px;
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  align-items: center;
}

.stacked-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-slab {
  background: var(--stone);
  padding: 26px;
  border-radius: 18px;
}

.side-note {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .hero-title {
    font-size: 32px;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-item img {
    width: 100%;
    height: 180px;
  }

  .sticky-cta {
    position: static;
    display: inline-flex;
    margin: 20px 0 0;
  }
}
