/* Light, elegant theme for Dog Grooming Burlington */
:root {
  --bg: #ffffff;
  --surface: #f7f9fb;
  --border: #e6ecf1;
  --text: #1e293b;
  --muted: #60708a;
  --primary: #2aa7a1;
  --primary-ink: #0b3f3c;
  --accent: #6bc4bf;
  --shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Layout helpers */
.container { width: min(1100px, 92%); margin: 0 auto; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.center { text-align: center; }
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 36px; }
.tiny { font-size: 0.875rem; }
.muted { color: var(--muted); }

/* Header */
.site-header { position: sticky; top: 0; background: rgba(255,255,255,0.8); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--border); z-index: 30; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand { text-decoration: none; font-weight: 700; color: var(--text); letter-spacing: 0.3px; }
.nav { display: flex; gap: 18px; align-items: center; }
.nav a { text-decoration: none; color: var(--muted); padding: 8px 10px; border-radius: 10px; }
.nav a.active, .nav a:hover { color: var(--text); background: var(--surface); }
.nav-toggle { display: none; appearance: none; border: 0; background: var(--surface); padding: 8px 12px; border-radius: 10px; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%); border-bottom: 1px solid var(--border); }
.hero-inner { padding: 72px 0 56px; text-align: center; }
.hero h1 { font-size: clamp(1.8rem, 2.4vw + 1rem, 3rem); margin: 0 0 12px; letter-spacing: 0.2px; }
.hero p { color: var(--muted); margin: 0 auto; max-width: 60ch; }
.hero-cta { margin-top: 24px; display: flex; gap: 12px; justify-content: center; }

/* Sections */
.highlights { padding: 40px 0; }
.services-preview { padding: 40px 0; }
.reviews { background: var(--surface); padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-blend { padding: 48px 0; }
.about-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: center; }
.about-visual { position: relative; min-height: 240px; }
.soft-circle { position: absolute; width: 180px; height: 180px; background: radial-gradient(circle at 30% 30%, var(--accent), transparent 60%); border-radius: 50%; top: 10%; left: 10%; filter: blur(6px); opacity: 0.5; }
.soft-rect { position: absolute; width: 220px; height: 140px; background: linear-gradient(135deg, var(--primary), transparent 70%); right: 8%; bottom: 12%; border-radius: 18px; opacity: 0.3; }

.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 18px; box-shadow: var(--shadow); }
.quote p { margin: 0 0 8px; }

.service-list .service + .service { margin-top: 16px; }

/* Buttons */
.btn { display: inline-block; border: 1px solid var(--border); padding: 10px 14px; border-radius: 12px; text-decoration: none; color: var(--text); background: var(--bg); transition: transform .06s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn.primary { background: var(--primary); border-color: transparent; color: #fff; }
.btn.primary:hover { background: var(--accent); }

/* Pages */
.page { padding: 32px 0 40px; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding-left: 26px; position: relative; margin: 10px 0; }
.checklist li::before { content: "✔"; color: var(--primary); position: absolute; left: 0; }

/* Forms */
.form .field { display: grid; gap: 6px; margin-bottom: 14px; }
.form input, .form textarea { font: inherit; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--text); }
.form input:focus, .form textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }

.map-embed { position: relative; padding-bottom: 56%; height: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.map-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #fbfcfe; margin-top: 40px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; }
.footer-nav { display: flex; gap: 14px; }

/* Utilities */
.center .btn + .btn { margin-left: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .about-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav { position: absolute; top: 58px; right: 4%; background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 8px; display: none; flex-direction: column; width: 220px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
}

