:root {
  --accent: #2563eb;
  --dark: #111827;
  --bg: #ffffff;
  --alt-bg: #f8fafc;
  --muted: #4b5563;
  --line: #e5e7eb;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--muted); background: var(--bg); line-height: 1.6;
}
.hidden { display: none !important; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { color: var(--dark); line-height: 1.25; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 1.1rem; color: var(--dark); text-decoration: none; }
.logo span { color: var(--accent); }
.header-cta {
  background: var(--accent); color: #fff !important; text-decoration: none;
  padding: .55rem 1.1rem; border-radius: 999px; font-weight: 600; font-size: .9rem;
}

/* Hero */
.hero { padding: 4rem 0 3rem; text-align: center; }
.hero-eyebrow {
  display: inline-block; background: color-mix(in srgb, var(--accent) 10%, white);
  color: var(--accent); font-weight: 700; font-size: .85rem;
  padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); letter-spacing: -.02em; margin-bottom: 1rem; }
.hero p { font-size: 1.125rem; max-width: 38rem; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: .85rem 1.75rem; border-radius: 999px;
  font-weight: 600; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-secondary { background: #25d366; color: #fff; }

/* Sections */
section { padding: 3.5rem 0; }
.alt { background: var(--alt-bg); }
.section-title { text-align: center; font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: .5rem; }
.section-sub { text-align: center; max-width: 34rem; margin: 0 auto 2.5rem; }

/* Stats bar */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-top: -1px; }
.stat { text-align: center; padding: 1.25rem; border-top: 3px solid var(--accent); background: var(--alt-bg); }
.stat-value { display: block; font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.stat-label { font-size: .85rem; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem;
  transition: box-shadow .15s ease, transform .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.card-icon { font-size: 1.8rem; margin-bottom: .75rem; }
.card h3 { margin-bottom: .5rem; font-size: 1.05rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.photo { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--bg); }
.photo img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.photo figcaption { padding: .6rem .9rem; font-size: .85rem; }
.photo-placeholder { aspect-ratio: 4/3; display: flex; flex-direction: column; }
.photo-placeholder .ph-inner {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, var(--alt-bg), var(--alt-bg) 12px, #eef2f7 12px, #eef2f7 24px);
  color: var(--accent);
}

/* Hours + contact */
.two-col { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .two-col { grid-template-columns: 1fr 1fr; } }
.hours-row { display: flex; justify-content: space-between; padding: .75rem 0; border-bottom: 1px dashed var(--line); }
.hours-row:last-child { border-bottom: 0; }
.contact-lines p { margin-bottom: .6rem; font-size: 1.05rem; }
.contact-lines a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* Reviews */
.review footer { margin-top: .75rem; font-size: .85rem; font-weight: 600; color: var(--dark); }
.review-stars { color: #f59e0b; letter-spacing: .1em; margin-bottom: .5rem; }
.review p { font-style: italic; }

/* Map */
.map-wrap { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 340px; border: 0; display: block; }

/* Footer */
.site-footer { background: var(--dark); color: #9ca3af; padding: 2.5rem 0; font-size: .9rem; }
.footer-links { list-style: none; display: flex; gap: 1.25rem; margin-top: .75rem; }
.site-footer a { color: #d1d5db; }
.demo-badge {
  margin-top: 1.25rem; display: inline-block; font-size: .78rem; border: 1px solid #374151;
  padding: .3rem .8rem; border-radius: 999px;
}
