/* =====================================================
   Teesside Pet Grooming — Static Site Stylesheet
   Design: Soft Organic Warmth | Sage Green + Warm Sand
   Fonts: Nunito (headings), Lato (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary: #5a8a5a;
  --primary-dark: #3d6b3d;
  --primary-light: #8fbc8f;
  --accent: #e07b54;
  --bg: #f9f7f2;
  --bg-alt: #f0ede4;
  --text: #2d2d2d;
  --text-muted: #6b6b6b;
  --border: #ddd8cc;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; }
h1, h2, h3, h4, h5 { font-family: 'Nunito', sans-serif; font-weight: 800; line-height: 1.2; color: var(--text); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(249,247,242,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.35rem; color: var(--text); text-decoration: none; }
.logo svg { color: var(--primary); flex-shrink: 0; }
.main-nav { display: flex; align-items: center; gap: 28px; list-style: none; }
.main-nav > li > a { font-size: 0.9rem; font-weight: 600; color: var(--text); text-decoration: none; transition: color 0.2s; }
.main-nav > li > a:hover { color: var(--primary); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 200px; padding: 8px 0; z-index: 200; }
.dropdown-menu a { display: block; padding: 9px 18px; font-size: 0.875rem; color: var(--text); transition: background 0.15s; }
.dropdown-menu a:hover { background: var(--bg-alt); color: var(--primary); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { display: block; }
.btn-cta { display: inline-block; background: var(--primary); color: var(--white) !important; padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 14px rgba(90,138,90,0.35); white-space: nowrap; }
.btn-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(90,138,90,0.45); }
.btn-cta-large { padding: 16px 40px; font-size: 1.1rem; border-radius: 50px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* HERO */
.hero { padding: 80px 0; background: var(--bg-alt); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(90,138,90,0.12); border: 1px solid rgba(90,138,90,0.25); color: var(--primary-dark); padding: 5px 14px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; max-width: 480px; }
.hero-trust { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.hero-image { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 4/3; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* SECTIONS */
section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); transition: box-shadow 0.2s, transform 0.2s; border: 1px solid var(--border); }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-icon { width: 52px; height: 52px; background: rgba(90,138,90,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--primary); }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 18px; }
.card-link { font-size: 0.875rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.card-link:hover { color: var(--primary-dark); }

/* STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.step { text-align: center; padding: 28px 20px; }
.step-number { width: 56px; height: 56px; background: var(--primary); color: var(--white); border-radius: 50%; font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
details { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; background: var(--white); overflow: hidden; }
details summary { padding: 18px 22px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
details summary::after { content: '+'; font-size: 1.4rem; color: var(--primary); }
details[open] summary::after { content: '−'; }
details summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 22px 18px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* MAP */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 3px solid var(--white); height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* LOCATION GRID */
.location-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.location-pill { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); font-weight: 600; font-size: 0.9rem; color: var(--text); transition: all 0.2s; }
.location-pill:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.location-pill svg { color: var(--primary); flex-shrink: 0; }

/* PAGE HERO */
.page-hero { padding: 60px 0; background: var(--bg-alt); }
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.page-hero h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; }
.page-hero-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-hover); aspect-ratio: 4/3; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* PROSE */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: 36px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--primary-dark); }
.prose p { margin-bottom: 16px; color: var(--text-muted); line-height: 1.8; }
.prose ul { margin: 12px 0 20px 22px; }
.prose li { margin-bottom: 8px; color: var(--text-muted); }

/* CHECKLIST */
.checklist { list-style: none; padding: 0; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; color: var(--text-muted); font-size: 0.95rem; border-bottom: 1px solid var(--border); }
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; color: var(--primary); font-weight: 900; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* CTA BANNER */
.cta-banner { background: var(--primary); color: var(--white); padding: 60px 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 28px; }
.btn-cta-white { display: inline-block; background: var(--white); color: var(--primary) !important; padding: 16px 40px; border-radius: 50px; font-weight: 800; font-size: 1.05rem; transition: transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* FOOTER */
.site-footer { background: #2d2d2d; color: rgba(255,255,255,0.75); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-operator { font-size: 0.85rem; line-height: 1.8; }
.footer-operator a { color: var(--primary-light); }
.footer-operator a:hover { color: var(--white); }
.footer-col h4 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--primary-light); }

/* BREADCRUMB */
.breadcrumb { padding: 12px 0; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* LEGAL */
.legal-content { max-width: 820px; margin: 0 auto; padding: 60px 0; }
.legal-content h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-content .updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }
.legal-content h2 { font-size: 1.25rem; margin: 32px 0 12px; }
.legal-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.legal-content ul { margin: 10px 0 18px 24px; }
.legal-content li { color: var(--text-muted); margin-bottom: 6px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner, .page-hero-inner, .page-hero-inner { grid-template-columns: 1fr; }
  .hero-image, .page-hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
}
.main-nav.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 16px; z-index: 99; }
.main-nav.open .dropdown-menu { display: block; position: static; box-shadow: none; border: none; padding: 0 0 0 16px; background: transparent; }
