* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1e1a16;
  --muted: #6b5f55;
  --accent: #b86a4b;
  --accent-dark: #8f523a;
  --sand: #f5efe8;
  --rose: #f1e1dc;
  --olive: #e6efe6;
  --paper: #faf7f3;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.topbar {
  padding: 22px 6vw 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  border: 1px solid #d9cfc6;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.rose {
  background: var(--rose);
}

.section.olive {
  background: var(--olive);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-media {
  flex: 1 1 320px;
  min-width: 280px;
  background: #e9e1d9;
  border-radius: 22px;
  overflow: hidden;
  padding: 12px;
}

.media-img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

p {
  margin-bottom: 14px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-dark);
  color: var(--accent-dark);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--accent-dark);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e4d8cf;
  font-size: 0.9rem;
  color: var(--muted);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #eadfd6;
  align-items: center;
  flex-wrap: wrap;
}

.service-card img {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  object-fit: cover;
  background: #f0e6dc;
}

.service-meta {
  flex: 1 1 200px;
}

.service-price {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--accent-dark);
}

.quote-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 220px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #eadfd6;
}

.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid #eadfd6;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cdc3;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 999px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(30, 26, 22, 0.15);
  z-index: 4;
}

.sticky-cta span {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  padding: 50px 6vw;
  background: #1f1a17;
  color: #f5f1ed;
}

.footer a {
  color: #f5f1ed;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-col {
  flex: 1 1 200px;
}

.legal {
  font-size: 0.85rem;
  color: #d8cfc6;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 30px rgba(30, 26, 22, 0.15);
  z-index: 5;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.notice {
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed #c9bcb2;
  background: #fff;
  color: var(--muted);
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
