:root {
  --orange: #f58634;
  --red: #df3740;
  --cream: #fbf2e5;
  --plum: #a34f88;
  --ink: #251b1f;
  --muted: #6e6264;
  --line: #ead8c5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(64, 38, 26, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: #fffaf4;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid rgba(234, 216, 197, 0.75);
  backdrop-filter: blur(14px);
}

.brand img { width: min(280px, 48vw); height: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a { color: var(--muted); }
.site-nav a.active, .site-nav a:hover { color: var(--red); }

.header-cta {
  padding: 11px 18px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(245, 134, 52, 0.24);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 84px);
  padding: clamp(44px, 7vw, 86px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.hero-copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.hero-copy p, .section-heading p, .section-copy p, .page-hero p {
  color: var(--muted);
  font-size: 16px;
}

.hero-media img, .section-media img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-actions, .center-action { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.center-action { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

.btn.primary { background: var(--red); color: var(--white); }
.btn.secondary { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.btn.light { background: var(--white); color: var(--red); }
.text-link { color: var(--red); font-weight: 800; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.trust-strip div {
  padding: 24px;
  background: var(--white);
}

.trust-strip strong { display: block; color: var(--plum); font-size: 20px; }
.trust-strip span { color: var(--muted); font-size: 14px; }

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
}

.warm { background: var(--cream); }
.section-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }

.service-grid, .testimonial-grid, .value-grid, .process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article, .value-grid article, .process-grid article, blockquote, .contact-card, .contact-form, .metric-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(64, 38, 26, 0.07);
}

.service-grid.detailed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-grid p, .value-grid p, .process-grid p, blockquote p { color: var(--muted); font-size: 14px; }

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  background: var(--cream);
  border-radius: 6px;
  font-weight: 700;
}

.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
blockquote { margin: 0; }
cite { display: block; color: var(--plum); font-style: normal; font-weight: 800; }

.faq-section { background: #fff7ee; }
.faq-list { max-width: 920px; margin: 0 auto; display: grid; gap: 12px; }
details {
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
summary { cursor: pointer; font-weight: 800; }
details p { margin: 12px 0 0; color: var(--muted); }

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
  background: linear-gradient(110deg, var(--red), var(--orange));
  color: var(--white);
}
.contact-band p { color: rgba(255, 255, 255, 0.86); max-width: 760px; }
.contact-band .eyebrow { color: var(--cream); }

.page-hero {
  padding: clamp(58px, 8vw, 105px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 70px);
  background: var(--cream);
  text-align: center;
}
.page-hero h1 { max-width: 950px; margin-left: auto; margin-right: auto; }
.page-hero p { max-width: 760px; margin-left: auto; margin-right: auto; }

.value-grid, .process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-grid span, .process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.metric-panel { display: grid; gap: 18px; }
.metric-panel strong { display: block; color: var(--red); font-size: 34px; line-height: 1; }
.metric-panel span { color: var(--muted); font-weight: 700; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.contact-card a { color: var(--red); font-weight: 800; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 7px; font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: #fffdfa;
}

.map-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 24px;
  background: var(--cream);
}

.map-card {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background:
    linear-gradient(rgba(37, 27, 31, 0.36), rgba(37, 27, 31, 0.36)),
    url("../images/generated-hero-image.png") center/cover;
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 28px;
  padding: 46px clamp(20px, 5vw, 72px) 24px;
  background: #24171c;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer img { width: 250px; padding: 10px; border-radius: 6px; background: var(--white); }
.site-footer h3 { color: var(--white); }
.site-footer a { color: var(--cream); font-weight: 700; }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header { flex-wrap: wrap; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    display: none;
    order: 4;
    width: 100%;
    margin-left: 0;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .header-cta { display: none; }
  .hero, .split, .contact-layout, .map-section {
    grid-template-columns: 1fr;
  }
  .reverse .section-copy { order: 1; }
  .reverse .section-media { order: 2; }
  .service-grid, .service-grid.detailed, .testimonial-grid, .value-grid, .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-strip { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .brand img { width: min(235px, 70vw); }
  .hero { min-height: auto; padding-top: 36px; }
  .service-grid, .service-grid.detailed, .testimonial-grid, .value-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .contact-band { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  h1 { font-size: 33px; }
  h2 { font-size: 27px; }
}
/* @vn-deploy:1781902646071 */
