/*
  Dog Grooming Barrie — Light, elegant UI
  Fonts: Playfair Display (headings), Inter (body)
*/

:root {
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --text: #223;
  --muted: #5c6270;
  --primary: #2aa198; /* elegant teal */
  --primary-ink: #0e5e58;
  --border: #e6e8ee;
  --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, 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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .logo {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.2px;
  color: #12131a;
}

h1 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.12; margin: 0 0 0.6rem; }
h2 { font-size: clamp(1.3rem, 2.5vw, 2.1rem); margin: 0 0 0.4rem; }
h3 { font-size: 1.15rem; margin: 0 0 0.25rem; }
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0 0 1rem 1.1rem; color: var(--muted); }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem .8rem; border-radius: .5rem; box-shadow: var(--shadow); z-index: 999; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0;
}
.logo { font-weight: 700; font-size: 1.25rem; }
.logo span { color: var(--primary); }

.nav-menu { display: flex; gap: .6rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; color: #2b2d42; padding: .55rem .8rem; border-radius: .6rem; }
.nav-menu a:hover { background: var(--bg-alt); }

.nav-toggle { display: none; background: none; border: 0; padding: .4rem; border-radius: .6rem; }
.nav-toggle:focus { outline: 2px solid var(--primary); }
.nav-toggle .bar { display: block; width: 22px; height: 2px; margin: 5px 0; background: #222; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; text-decoration: none;
  background: var(--primary); color: #fff; border: 1px solid var(--primary);
  padding: .8rem 1rem; border-radius: .8rem; font-weight: 600;
  box-shadow: 0 6px 16px rgba(42,161,152,.25);
  transition: transform .04s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(42,161,152,.28); }
.btn:active { transform: translateY(0); }
.btn.ghost { background: transparent; color: var(--primary-ink); border-color: var(--border); box-shadow: none; }
.btn-small { padding: .5rem .7rem; font-weight: 600; }
.btn.full { width: 100%; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: -40% -20% auto -20%; height: 120%;
  background: radial-gradient(1200px 800px at right -10% top 20%, rgba(42,161,152,.12), rgba(42,161,152,0));
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; padding: 5rem 0 3rem; align-items: center; }
.hero-copy p { font-size: 1.05rem; }
.cta { display: flex; gap: .8rem; margin: 1.1rem 0 0.6rem; }
.trust { color: #6b7280; font-size: .95rem; margin-top: .6rem; }
.hero-art { height: 360px; border-radius: 24px; background:
  radial-gradient(180px 120px at 20% 25%, rgba(42,161,152,.12), rgba(42,161,152,0)),
  radial-gradient(200px 140px at 80% 70%, rgba(42,161,152,.10), rgba(42,161,152,0)),
  linear-gradient(135deg, #ffffff, #f3f8f8);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  position: relative;
}
.hero-art::before, .hero-art::after {
  content: ""; position: absolute; border-radius: 50%; opacity: .85;
}
.hero-art::before { width: 140px; height: 140px; left: 18%; top: 18%; background: radial-gradient(circle at 30% 30%, #fff 0 40%, rgba(42,161,152,.2) 41% 100%); }
.hero-art::after { width: 90px; height: 90px; right: 16%; bottom: 16%; background: radial-gradient(circle at 30% 30%, #fff 0 40%, rgba(42,161,152,.16) 41% 100%); }

/* Sections */
.section { padding: 3.5rem 0; }
.section.alt { background: var(--bg-alt); }
.section-title { margin-bottom: .25rem; }
.section-lead { margin-bottom: 1.6rem; }

/* Cards */
.grid.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.card ul { margin: .6rem 0 0 1.1rem; }
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.08); transition: .2s ease; }

/* Gallery */
.grid.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ph { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; position: relative; border: 1px solid var(--border); box-shadow: var(--shadow);
  background:
    radial-gradient(90px 60px at 30% 30%, rgba(42,161,152,.12), rgba(42,161,152,0)),
    linear-gradient(135deg, #fafcfc, #f4f8f8);
}
.ph figcaption { position: absolute; left: .8rem; bottom: .6rem; background: rgba(255,255,255,.75); padding: .25rem .5rem; border-radius: .5rem; font-size: .9rem; }

/* About */
.split { display: grid; grid-template-columns: 1.4fr .8fr; gap: 2rem; align-items: start; }
.checks { list-style: none; padding: 0; margin-top: 1rem; }
.checks li { margin: .35rem 0; padding-left: 1.4rem; position: relative; }
.checks li::before { content: "✔"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.aside { display: grid; gap: .8rem; }
.stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: .9rem 1rem; text-align: center; box-shadow: var(--shadow); }
.stat .big { font-size: 1.6rem; font-weight: 700; color: var(--primary-ink); }
.stat .small { color: var(--muted); font-size: .9rem; }

/* FAQ */
details { background: #fff; border: 1px solid var(--border); border-radius: .8rem; padding: .8rem 1rem; margin-bottom: .6rem; box-shadow: var(--shadow); }
summary { cursor: pointer; font-weight: 600; }
details[open] summary { color: var(--primary-ink); }

/* Contact */
.form { display: grid; gap: .8rem; }
.field { display: grid; gap: .4rem; }
label { font-weight: 600; }
input, select, textarea {
  border: 1px solid var(--border); border-radius: .7rem; padding: .7rem .8rem; font: inherit; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(42,161,152,.35); border-color: var(--primary); }
.status { min-height: 1.2rem; color: var(--primary-ink); }

.contact-card { display: grid; gap: .7rem; border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; background: #fff; box-shadow: var(--shadow); }
.contact-item { color: var(--muted); }
.map-wrap { border-radius: .8rem; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 220px; border: 0; display: block; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 0; }
.logo.small { font-size: 1.05rem; }
.fineprint { color: #7a7f8a; font-size: .92rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 3.5rem 0 2rem; }
  .hero-art { order: -1; height: 220px; }
  .grid.cards { grid-template-columns: repeat(2, 1fr); }
  .grid.gallery { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
  .nav-menu { position: absolute; right: 4%; top: 60px; background: #fff; border: 1px solid var(--border); border-radius: .8rem; box-shadow: var(--shadow); padding: .5rem; display: none; flex-direction: column; min-width: 220px; }
  .nav-menu.show { display: flex; }
  .nav-menu a { padding: .7rem .9rem; }
  .grid.cards, .grid.gallery { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: .8rem; text-align: center; }
}

