/*
  Kingston Dog Grooming – light, sleek, modern styles
*/

:root {
  --bg: #f8fafc;
  --bg-alt: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --primary: #10b981; /* emerald */
  --primary-600: #059669;
  --ring: rgba(16, 185, 129, 0.35);
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

/* Basic reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: Inter, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Noto Sans, Ubuntu, Cantarell, system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.55; }
img, svg { display: block; max-width: 100%; }
input, textarea, button { font: inherit; color: inherit; }
button { cursor: pointer; }

/* Layout */
.container { width: min(1120px, 92%); margin-inline: auto; }
.narrow { width: min(880px, 92%); margin-inline: auto; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.8); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid rgba(226,232,240,0.7); }
.site-header.scrolled { background: rgba(255,255,255,0.95); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.logo { font-weight: 700; letter-spacing: 0.2px; color: var(--text); text-decoration: none; }
.menu { display: flex; align-items: center; gap: 20px; }
.menu-toggle { display: none; border: 1px solid var(--border); background: #fff; padding: 8px 10px; border-radius: 10px; }
.menu ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 14px; }
.menu a { color: var(--muted); text-decoration: none; padding: 8px 10px; border-radius: 8px; }
.menu a:hover { color: var(--text); background: #f1f5f9; }
.cta { white-space: nowrap; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: 12px; border: 1px solid transparent; text-decoration: none; font-weight: 600; transition: transform .1s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(16,185,129,0.25); }
.btn-primary:hover { background: var(--primary-600); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: #f8fafc; }

/* Hero */
.hero { position: relative; padding: 96px 0; background: radial-gradient(1200px 600px at 20% -10%, rgba(16,185,129,0.15), transparent), linear-gradient(180deg, #ffffff, #f8fafc); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px; }
.hero-copy h1 { font-size: clamp(2rem, 2.5vw + 1rem, 3rem); line-height: 1.1; margin: 0 0 14px; }
.hero-copy p { color: var(--muted); font-size: 1.075rem; margin: 0 0 18px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 10px; }
.trust-points { display: flex; gap: 18px; flex-wrap: wrap; padding: 0; margin: 18px 0 0; list-style: none; color: var(--muted); }
.hero-visual { display: grid; place-items: center; }
.card-hero { position: relative; width: 100%; max-width: 520px; min-height: 320px; background: #fff; border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.card-hero .paw { position: absolute; top: 18px; right: 20px; font-size: 42px; }
.card-hero .lines { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, #f8fafc, #f8fafc 12px, #eef2f7 12px, #eef2f7 28px); opacity: .65; }

/* Cards & grids */
.cards { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid { display: grid; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: var(--shadow); }
.service h3 { margin: 0 0 8px; }
.service p { margin: 0 0 10px; color: var(--muted); }
.note { color: var(--muted); font-size: .95rem; }

.eyebrow { margin: 8px 0 24px; color: var(--muted); }

/* About */
.features { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.feature h3 { margin: 0 0 6px; }
.feature p { margin: 0; color: var(--muted); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.tile { aspect-ratio: 1 / 1; border-radius: 14px; border: 1px solid var(--border); background: conic-gradient(from 180deg at 50% 50%, #ffffff, #f0fdfa, #ecfeff, #f8fafc); position: relative; overflow: hidden; }
.tile::after { content: "🐶"; position: absolute; font-size: clamp(28px, 5vw, 44px); right: 12px; bottom: 10px; opacity: .6; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 18px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0 0 8px; }
.contact-list li { margin: 6px 0; color: var(--muted); }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-weight: 600; }
input, textarea { border: 1px solid var(--border); border-radius: 12px; padding: 12px 12px; background: #fff; box-shadow: inset 0 1px 0 #fff; outline: none; }
input:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--ring); }
.form-note { color: var(--muted); font-size: .9rem; margin: 8px 0 0; }

/* Footer */
.site-footer { margin-top: 24px; padding: 28px 0 48px; border-top: 1px solid var(--border); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 12px; align-items: center; }
.brand { display: flex; align-items: center; gap: 10px; }
.logo-sm { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: #ecfeff; border: 1px solid var(--border); }
.footer-nav a { color: var(--muted); text-decoration: none; margin-right: 10px; }
.footer-nav a:hover { color: var(--text); }
.legal { color: var(--muted); text-align: right; }

/* Utilities */
a { color: #0ea5e9; text-underline-offset: 2px; }
a:hover { color: #0284c7; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .legal { text-align: center; }
}

@media (max-width: 720px) {
  .menu-toggle { display: inline-flex; }
  .menu ul { display: none; position: absolute; top: 60px; right: 4%; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); padding: 10px; flex-direction: column; gap: 4px; }
  .menu ul.open { display: flex; }
}

