:root {
  --yellow: #F9CD54;
  --ink: #060606;
  --brown: #635228;
  --cream: #F6E09F;
  --gray: #E1E0DE;
  --bg: #fffdf8;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.top-anchor {
  position: relative;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
}

a { color: var(--brown); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray);
}

.logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
.logo { width: 52px; height: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-weight: 700; font-size: 1rem; }
.brand-parent { font-size: 0.85rem; color: #3e3d3a; }

.main-nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.65rem, 1vw, 1.25rem);
}
.main-nav a {
  padding: 0.35rem 0.55rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.header-phone {
  background: var(--yellow);
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--brown);
  text-align: center;
}

.nav-toggle { display: none; }

.hero {
  max-width: var(--max-width);
  margin: 2.5rem auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.2rem);
  line-height: 1.2;
  margin: 0.4rem 0;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brown);
  font-size: 0.85rem;
}

.lede { font-size: 1.05rem; max-width: 36ch; }

.cta-group { display: flex; gap: 0.75rem; margin: 1.2rem 0; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid var(--ink);
}

.btn.primary { background: var(--yellow); color: var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--brown); }

.trust { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.dot { width: 10px; height: 10px; background: var(--yellow); border-radius: 50%; display: inline-block; }

.hero-card {
  background: var(--cream);
  padding: 1.4rem;
  border: 1px solid var(--brown);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.hero-card h3 { margin-top: 0; }
.hero-card ul { padding-left: 1.2rem; margin: 0.8rem 0 1rem; }
.card-call { font-weight: 700; color: var(--ink); }

section { padding: 2.5rem 1.25rem; }

.section-heading { max-width: var(--max-width); margin: 0 auto 1rem; }
.section-heading h2 { margin: 0.25rem 0; font-size: 1.8rem; }
.section-sub { margin: 0; color: #3b3a37; }

.services { background: #fff; }
.service-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.service-card {
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 1rem;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}
.service-card h2 { font-size: 1.2rem; margin-top: 0; }

.steps { background: var(--gray); }
.step-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step {
  background: #fff;
  border-radius: 12px;
  padding: 1.1rem;
  border: 1px solid #d4d3cf;
  position: relative;
}
.step-number {
  position: absolute;
  top: -12px;
  right: 12px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.service-area { background: var(--cream); }
.area-list {
  max-width: var(--max-width);
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-weight: 700;
}
.area-list li { background: #fff; padding: 0.55rem 0.9rem; border-radius: 999px; border: 1px solid var(--brown); }

.reviews { background: #fff; }
.review-placeholders { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.review-card { border: 1px dashed var(--brown); border-radius: 12px; padding: 1rem; background: #fffdf6; }
.placeholder { margin: 0; color: #4a4946; font-weight: 600; }

.faqs { background: var(--gray); }
.faq-list { max-width: var(--max-width); margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-list details { background: #fff; border: 1px solid #d4d3cf; border-radius: 10px; padding: 0.9rem 1rem; }
.faq-list summary { font-weight: 700; cursor: pointer; }

.contact { background: #fff; }
.contact-grid { max-width: var(--max-width); margin: 0 auto; display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; align-items: start; }
.contact-info .phone a { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.contact-form { display: grid; gap: 0.6rem; border: 1px solid var(--gray); padding: 1rem; border-radius: 12px; background: #fffdf6; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; padding: 0.65rem; border-radius: 8px; border: 1px solid #c7c6c2; font: inherit; }
.contact-form button { width: 100%; }
.hidden { display: none; }

.site-footer { text-align: center; padding: 1.2rem; background: #0a0a0a; color: #fdfcf9; }
.site-footer a { color: var(--yellow); font-weight: 700; }
.back-to-top { display: inline-block; margin-top: 0.5rem; color: #fdfcf9; font-weight: 600; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { position: absolute; top: 64px; right: 1.25rem; background: #fff; border: 1px solid var(--gray); border-radius: 12px; padding: 0.75rem; flex-direction: column; gap: 0.5rem; min-width: 200px; display: none; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; justify-self: end; padding: 0.5rem 0.8rem; border: 1px solid var(--brown); background: #fff; border-radius: 10px; font-weight: 700; }
  .header-phone { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: no-preference) {
  .btn { transition: transform 150ms ease, box-shadow 150ms ease; }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.12); }
}
