@font-face {
  font-family: "ManropeLocal";
  src: local("Manrope"), local("Manrope Regular");
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg: #f7f4f0;
  --ink: #1c1a18;
  --muted: #5f5a54;
  --accent: #d08b63;
  --accent-dark: #b46d45;
  --soft: #ffffff;
  --shadow: 0 20px 45px rgba(24, 20, 16, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "ManropeLocal", "Manrope", "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 80px;
}

.site-header {
  padding: 28px 6vw 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 40px 6vw 0;
}

.hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-copy {
  max-width: 580px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 18px 0 14px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-gap {
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.section {
  padding: 0 6vw;
}

.section-alt {
  background: #efe8df;
  padding: 60px 6vw;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: var(--soft);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.offset-card::after {
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 90px;
  height: 90px;
  background: rgba(208, 139, 99, 0.15);
  border-radius: 50%;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: var(--soft);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.card-image {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.service-card strong {
  font-size: 1.1rem;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-stack img:nth-child(2) {
  align-self: flex-end;
  width: 85%;
  margin-top: -40px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.testimonial {
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6cec5;
  font-family: inherit;
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--ink);
  color: #fff;
  padding: 40px;
  border-radius: 28px;
}

.cta-band .btn {
  align-self: flex-start;
}

.footer {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 30px 6vw 0;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.content-wrap {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.two-col .panel {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 860px) {
  .hero-wrap,
  .split,
  .split.reverse,
  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .hero-wrap {
    gap: 50px;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
    transform: translateY(18px);
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stats {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
  }

  .service-card {
    flex: 1;
  }

  .two-col {
    gap: 40px;
  }
}
