/* Mobile-first. All colors/fonts come from :root tokens injected per-client. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  color: var(--c-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--f-heading); line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; color: var(--c-dark); }
img { max-width: 100%; display: block; }
a { color: var(--c-primary); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1rem; }
.center { text-align: center; margin-top: 1.25rem; }

/* Buttons */
.btn {
  display: inline-block; padding: .8rem 1.5rem; border-radius: 6px;
  font-weight: 600; text-decoration: none; text-align: center;
  border: 2px solid transparent; cursor: pointer; font-size: 1rem;
  font-family: var(--f-body);
}
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-accent { background: var(--c-accent); color: var(--c-dark); }
.btn-outline { border-color: #fff; color: #fff; }
.btn:hover { filter: brightness(1.08); }

/* Top bar */
.topbar { background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 50; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding-top: .6rem; padding-bottom: .6rem; }
.logo { max-height: 48px; width: auto; }
.logo-text { font-family: var(--f-heading); font-size: 1.4rem; font-weight: 700; color: var(--c-primary); }
.topbar-call { padding: .55rem 1rem; font-size: .95rem; }

/* Hero */
.hero {
  background: var(--c-dark) center/cover no-repeat;
  color: #fff; padding: 4rem 0; text-align: center;
}
.hero h1 { font-size: 2.4rem; margin-bottom: .75rem; }
.hero-sub { font-size: 1.15rem; opacity: .92; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-direction: column; gap: .75rem; align-items: center; }
.hero-trust { margin-top: 1.5rem; font-size: .85rem; opacity: .8; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--c-light); }

/* Grids */
.grid { display: grid; gap: 1.25rem; }
.grid-services { grid-template-columns: 1fr; }
.grid-reviews { grid-template-columns: 1fr; }
.grid-gallery { grid-template-columns: 1fr 1fr; }

.card { background: #fff; border: 1px solid #e5eaef; border-radius: 8px; padding: 1.5rem; }
.card-icon { font-size: 2rem; margin-bottom: .5rem; }
.card h3 { color: var(--c-primary); margin-bottom: .4rem; }

.review { background: #fff; border-radius: 8px; padding: 1.5rem; border: 1px solid #e5eaef; }
.stars { color: var(--c-accent); letter-spacing: 2px; margin-bottom: .5rem; }
.review cite { display: block; margin-top: .75rem; font-style: normal; font-weight: 600; }

.gallery-img { border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* CTA band */
.cta-band { background: var(--c-primary); color: #fff; padding: 3rem 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 1.25rem; }

/* Contact */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.contact-form label { display: block; margin-bottom: 1rem; font-weight: 600; font-size: .95rem; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .7rem; margin-top: .3rem;
  border: 1px solid #c8d2da; border-radius: 6px; font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--c-primary); border-color: transparent; }
.contact-info h3 { color: var(--c-primary); margin-bottom: .75rem; }
.contact-info p { margin-bottom: .9rem; }
.hours { font-size: .95rem; }
.map { width: 100%; height: 260px; border: 0; border-radius: 8px; margin-top: 1rem; }

/* Footer */
.footer { background: var(--c-dark); color: #cbd6de; padding: 2rem 0; font-size: .9rem; text-align: center; }
.footer p { margin-bottom: .4rem; }

/* Sticky mobile call button */
.sticky-call {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 100;
  background: var(--c-accent); color: var(--c-dark);
  text-align: center; padding: 1rem; border-radius: 8px;
  font-weight: 700; text-decoration: none; font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

/* Tablet+ */
@media (min-width: 640px) {
  .hero h1 { font-size: 3.2rem; }
  .hero-ctas { flex-direction: row; justify-content: center; }
  .grid-services { grid-template-columns: 1fr 1fr; }
  .grid-reviews { grid-template-columns: 1fr 1fr 1fr; }
  .grid-gallery { grid-template-columns: 1fr 1fr 1fr; }
  .sticky-call { display: none; }  /* desktop has topbar call button */
}

@media (min-width: 900px) {
  .grid-services { grid-template-columns: 1fr 1fr 1fr; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .hero { padding: 6rem 0; }
}
