:root {
  --bg: #f7f4ef;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #b55a3c;
  --accent-dark: #8d3f27;
  --sage: #d9e3d1;
  --sand: #efe4d4;
  --stone: #d7d0c8;
  --shadow: 0 18px 45px rgba(27, 27, 27, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 60px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 8vw 12px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 14px;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-bottom: 1px solid var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 10px 8vw 0;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-top h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  margin: 0;
}

.hero-top p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.hero-frame {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sand);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-frame img {
  border-radius: 14px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 32px 8vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.sage {
  background: var(--sage);
}

.section.stone {
  background: var(--stone);
}

.section.split {
  flex-direction: row;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.section.split .text {
  flex: 1 1 320px;
}

.section.split .visual {
  flex: 1 1 320px;
}

.section.asym {
  position: relative;
}

.section.asym .floating-card {
  align-self: flex-end;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: -40px;
  max-width: 360px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--accent-dark);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  padding: 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.form-shell {
  background: white;
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-shell label {
  font-size: 13px;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d0c8be;
  font-size: 14px;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.secondary {
  background: var(--sand);
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent-dark);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 32px 8vw 50px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #1f1f1f;
  color: #f5f1ea;
}

.footer a {
  color: #f5f1ea;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.media-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.media-strip img {
  flex: 1 1 160px;
  border-radius: 14px;
  min-width: 140px;
}

.listing {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.notice {
  background: var(--sand);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.page-title {
  padding: 26px 8vw 0;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.simple-section {
  padding: 24px 8vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
  }

  .hero-top {
    flex: 1 1 55%;
  }

  .hero-frame {
    flex: 1 1 45%;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .form-shell {
    max-width: 520px;
  }
}
