:root {
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #667085;
  --yellow: #f5b800;
  --yellow-light: #fff7d6;
  --cream: #fffdf7;
  --white: #ffffff;
  --border: #e6e8ec;
  --success: #147d55;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Heebo", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.eyebrow { margin: 0 0 8px; color: #7a5d00; font-weight: 800; letter-spacing: .04em; }
.section-title { margin: 0; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.16; }
.section-copy { max-width: 700px; margin: 16px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17,24,39,.2); }
.button.yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.button.ghost { background: transparent; color: var(--ink); }
.icon { width: 22px; height: 22px; flex: 0 0 22px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(17,24,39,.08);
  background: rgba(255,253,247,.94);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: 1.12rem; font-weight: 900; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--yellow); }
.brand-mark svg { width: 25px; height: 25px; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { position: relative; font-weight: 700; text-decoration: none; }
.main-nav a:not(.header-call)::after { content: ""; position: absolute; inset-inline: 0; bottom: -6px; height: 2px; background: var(--yellow); transform: scaleX(0); transition: transform .18s ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.header-call { padding: 9px 16px; border-radius: 999px; background: var(--ink); color: var(--white); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 14px; background: var(--white); cursor: pointer; }
.menu-toggle svg { width: 24px; height: 24px; }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; background: var(--ink); color: var(--white); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .38; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,24,39,.95) 0%, rgba(17,24,39,.78) 48%, rgba(17,24,39,.28) 100%); }
.hero-inner { position: relative; z-index: 1; padding-block: 92px; }
.availability { display: inline-flex; align-items: center; gap: 9px; padding: 7px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; background: rgba(255,255,255,.09); font-weight: 700; }
.availability::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #49d78b; box-shadow: 0 0 0 5px rgba(73,215,139,.16); }
.hero h1 { max-width: 770px; margin: 24px 0 18px; font-size: clamp(3rem, 7vw, 6rem); line-height: 1.16; letter-spacing: -.04em; }
.hero .intro-answer { max-width: 680px; margin: 0; font-size: clamp(1.18rem, 2.2vw, 1.55rem); line-height: 1.6; color: #f7f7f7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 28px; margin: 38px 0 0; padding: 0; list-style: none; color: #e6e7e9; }
.hero-meta li { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--yellow); }

.trust-bar { border-bottom: 1px solid var(--border); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-item { display: flex; gap: 14px; align-items: center; padding: 24px; border-inline-start: 1px solid var(--border); }
.trust-item:first-child { border-inline-start: 0; }
.trust-icon { display: grid; place-items: center; flex: 0 0 46px; width: 46px; height: 46px; border-radius: 15px; background: var(--yellow-light); color: #6c5200; }
.trust-item strong { display: block; }
.trust-item span { color: var(--muted); font-size: .94rem; }

.section { padding-block: 96px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 28px rgba(17,24,39,.06); }
.service-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.service-body { padding: 28px; }
.service-body h3 { margin: 0 0 9px; font-size: 1.42rem; }
.service-body p { margin: 0; color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: #674f00; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.about-band { background: var(--ink); color: var(--white); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about-grid img { width: 100%; filter: drop-shadow(0 24px 30px rgba(0,0,0,.32)); }
.about-copy p { color: #d6d9de; }
.check-list { display: grid; gap: 14px; margin: 26px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list svg { margin-top: 4px; color: var(--yellow); }

.reviews-section { background: var(--white); }
.gmb-reviews { min-height: 220px; }
.review-fallback { max-width: 760px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); }
.review-fallback blockquote { margin: 0; font-size: 1.12rem; }
.review-fallback cite { display: block; margin-top: 14px; color: var(--muted); font-style: normal; font-weight: 700; }

.faq-list { display: grid; gap: 14px; max-width: 860px; }
.faq-item { border: 1px solid var(--border); border-radius: 18px; background: var(--white); }
.faq-item summary { cursor: pointer; padding: 20px 24px; font-size: 1.08rem; font-weight: 800; }
.faq-item p { margin: 0; padding: 0 24px 22px; color: var(--ink-soft); }

.cta-band { padding-block: 78px; background: var(--yellow); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-inner h2 { max-width: 680px; margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.16; }

.site-footer { background: #0b0f17; color: var(--white); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-block: 56px 34px; }
.footer-brand h2 { margin: 0 0 9px; font-size: 1.35rem; }
.footer-brand p, .footer-col p { margin: 0; color: #b9c0cc; }
.footer-col h2 { margin: 0 0 10px; font-size: 1.125rem; color: var(--yellow); }
.footer-col a { display: block; margin: 5px 0; color: #e7e9ed; text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px 36px; border-top: 1px solid rgba(255,255,255,.11); color: #aeb5c1; font-size: .9rem; }
.updated { font-size: .9rem; color: var(--muted); }

.page-hero { padding-block: 90px 60px; background: var(--ink); color: var(--white); }
.page-hero h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 4.7rem); line-height: 1.16; }
.page-hero p { max-width: 680px; margin: 18px 0 0; color: #d9dde4; font-size: 1.18rem; }
.content-card { max-width: 860px; margin: 70px auto; padding: 42px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.thanks-image { width: min(100%, 588px); margin: 0 auto 28px; }
.content-card h2 { margin-top: 32px; }
.content-card ul { padding-inline-start: 22px; }
.not-found { text-align: center; }
.not-found .code { margin: 0; color: #8a6900; font-size: clamp(4rem, 15vw, 9rem); font-weight: 900; line-height: 1; }

.fab-container { position: fixed; bottom: 24px; left: 24px; z-index: 2147483000; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.fab { pointer-events: auto; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,.25); transition: transform .2s, box-shadow .2s; }
.fab:hover { transform: scale(1.08); box-shadow: 0 6px 18px rgba(0,0,0,.35); }
.fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.fab.wa { background: #25d366; }
.fab.call { background: var(--ink); }
.fab svg { width: 28px; height: 28px; fill: white; }

@media (max-width: 820px) {
  .menu-toggle { display: grid; place-items: center; }
  .main-nav { position: absolute; top: 70px; inset-inline: 20px; display: none; align-items: stretch; padding: 18px; border: 1px solid var(--border); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.open { display: grid; gap: 8px; }
  .main-nav a { padding: 10px; }
  .main-nav .header-call { text-align: center; }
  .hero { min-height: 620px; }
  .hero::after { background: rgba(17,24,39,.78); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-inline-start: 0; border-top: 1px solid var(--border); }
  .trust-item:first-child { border-top: 0; }
  .services-grid, .about-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 35px; }
  .about-grid img { width: min(100%, 680px); margin-inline: auto; }
  .section-head, .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .header-inner { min-height: 70px; }
  .brand { font-size: 1rem; }
  .hero { min-height: 660px; }
  .hero-inner { padding-block: 70px; }
  .hero h1 { font-size: clamp(2.8rem, 16vw, 4.3rem); }
  .hero-actions { display: grid; }
  .hero-meta { display: grid; gap: 12px; }
  .section { padding-block: 70px; }
  .services-grid { gap: 16px; }
  .service-body, .content-card { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .fab-container { bottom: 16px; left: 16px; }
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media print { .site-header, .fab-container, #a11y-toggle, #a11y-panel { display: none !important; } }
