/* ============================================
   THEME — this is the only block a client-specific
   reskin usually needs to touch.
   ============================================ */
:root {
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --text: #1f2328;
  --text-muted: #5b6472;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --border: #e5e9ef;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius: 10px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.25; margin: 0 0 .5em; }
p { margin: 0 0 1em; color: var(--text-muted); }
a { color: var(--accent); }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand {
  font-family: var(--font-heading);
  font-size: 20px; font-weight: 700; color: var(--text); text-decoration: none;
}
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { text-decoration: none; color: var(--text); font-size: 14px; }
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 8px 16px;
  border-radius: 999px; font-weight: 600;
}
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }

/* Hero */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  text-align: center;
}
.hero h1 { font-size: clamp(28px, 5vw, 48px); max-width: 720px; margin: 0 auto .4em; }
.hero-sub { font-size: 18px; max-width: 560px; margin: 0 auto 28px; }

.btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: transform .15s ease, background .15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-size: 28px; margin-bottom: .6em; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px;
}
.card .price { display: block; margin-top: 12px; font-weight: 700; color: var(--accent); }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex; justify-content: space-between; padding: 6px 0;
  border-bottom: 1px solid var(--border); font-size: 14px;
}

/* Footer */
.site-footer {
  padding: 32px 0; text-align: center; font-size: 13px; color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.site-footer p { margin: 0; }

/* Responsive */
@media (max-width: 720px) {
  .nav { position: absolute; top: 64px; left: 0; right: 0; background: var(--bg);
         flex-direction: column; align-items: flex-start; padding: 16px 24px;
         border-bottom: 1px solid var(--border); display: none; gap: 14px; }
  .nav.nav-open { display: flex; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}
