:root {
  --brand: #4e66f8;
  --brand-dark: #3a4fd6;
  --brand-light: #eaedfe;
  --ink: #212529;
  --ink-soft: #5c6470;
  --bg: #ffffff;
  --card: #ffffff;
  --border: #e7e9f3;
  --star: #f5b301;
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding-bottom: 48px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  color: #fff;
}
.hero-logo {
  height: 56px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: #fff;
  padding: 4px;
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0 0 8px;
  font-size: 0.98rem;
}
.hero-meta a:hover { text-decoration: underline; }
.hero-meta i { color: var(--brand-light); margin-right: 4px; }
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 4px 0 0;
}
.hero-status.open { color: #7ee2a8; }
.hero-status.closed { color: #f0a0a0; }

/* Icon pill nav */
.pill-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.pill-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px 0;
  gap: 12px;
}
.pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  min-width: 72px;
}
.pill-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: transform .15s ease, background .15s ease;
}
.pill:hover .pill-icon { background: var(--brand); color: #fff; transform: translateY(-2px); }

section { padding: 46px 0; }
section h3.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}
.section-kicker {
  text-align: center;
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
.about-grid .contact-card {
  background: var(--brand-light);
  border-radius: var(--radius);
  padding: 20px;
}
.about-grid .contact-card p { margin: 10px 0; }
.about-grid .contact-card i { color: var(--brand); width: 18px; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }

/* Feedback quotes */
.feedback-strip {
  background: var(--brand-light);
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quotes blockquote {
  margin: 0;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.quotes blockquote i { color: var(--brand); margin-right: 6px; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }

/* Reviews */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.avg-rating { display: flex; align-items: center; gap: 10px; }
.avg-rating .stars { color: var(--star); font-size: 1.3rem; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
}
.review-card .review-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}
.review-card .author { font-weight: 600; }
.review-card .stars { color: var(--star); }
.review-card .date { color: #8f97a3; font-size: 0.85rem; }
.review-card .reply {
  margin-top: 10px;
  background: var(--brand-light);
  border-left: 3px solid var(--brand);
  padding: 8px 12px;
  font-size: 0.9rem;
  border-radius: 0 8px 8px 0;
}
.muted { text-align: center; color: var(--ink-soft); }
.reaction-row {
  margin-top: 10px;
  display: flex;
  gap: 14px;
}
.reaction-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}
.reaction-btn:hover { border-color: var(--brand); }
.reaction-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.leave-review-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  background: var(--brand);
  color: #fff;
  border: 0;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
.leave-review-btn:hover { background: var(--brand-dark); }

.google-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-light);
  border-radius: 999px;
  padding: 1px 8px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.service-card h4 { margin-top: 0; font-weight: 600; }
.service-card .price { font-size: 1.4rem; font-weight: 700; color: var(--brand); margin: 6px 0; }

/* Hours + map + weather */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.info-card h4 { margin-top: 0; font-weight: 600; }
.info-card h4 i { color: var(--brand); margin-right: 6px; }
table.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
table.hours-table td { padding: 6px 0; border-bottom: 1px solid var(--border); }
table.hours-table tr:last-child td { border-bottom: none; }
table.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.info-card iframe { width: 100%; height: 200px; border: 0; border-radius: 10px; }
.weather-temp { font-size: 2rem; font-weight: 700; }
.weather-feels { color: var(--ink-soft); font-size: 0.9rem; }

/* Footer */
footer.site-footer {
  background: #f7f8fc;
  color: var(--ink-soft);
  text-align: center;
  padding: 22px 0;
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(33,37,41,.55);
  align-items: center; justify-content: center;
  z-index: 50;
  padding: 16px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  max-width: 460px;
  width: 100%;
}
.modal h4 { margin-top: 0; }
.modal label { display: block; font-size: 0.85rem; margin: 10px 0 4px; font-weight: 600; }
.modal input, .modal textarea, .modal select {
  width: 100%; padding: 8px 10px; border: 1px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 0.92rem;
}
.modal textarea { min-height: 90px; resize: vertical; }
.modal .modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 16px; }
.btn { padding: 9px 18px; border-radius: 8px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-weight: 600; font-family: inherit; }
.btn.primary { background: var(--brand); border-color: var(--brand); color: #fff; }
.form-msg { font-size: 0.85rem; margin-top: 8px; }
.form-msg.ok { color: #0a7a3d; }
.form-msg.err { color: #b3261e; }
