/* ============================================================
   Pawprint & Co. Veterinary Wellness — styles.css
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --sage:       #7C9A82;
  --sage-dark:  #5e7d64;
  --sage-light: #a8c4ae;
  --cream:      #F5F0E8;
  --navy:       #1B2A4A;
  --navy-light: #2a3f6a;
  --terra:      #C4704B;
  --terra-dark: #a85a38;
  --white:      #FEFEFE;
  --gray-100:   #f8f7f4;
  --gray-200:   #ede9e0;
  --gray-400:   #9e9a92;
  --gray-600:   #6b6760;
  --gray-800:   #3a3835;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(27,42,74,.06), 0 1px 2px rgba(27,42,74,.04);
  --shadow-md:  0 4px 16px rgba(27,42,74,.10), 0 2px 6px rgba(27,42,74,.06);
  --shadow-lg:  0 12px 40px rgba(27,42,74,.14), 0 4px 12px rgba(27,42,74,.08);
  --shadow-xl:  0 24px 64px rgba(27,42,74,.18);

  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;

  --max-w: 1200px;
  --nav-h: 72px;
  --banner-h: 40px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.text-center { text-align: center; }
.text-sage   { color: var(--sage); }
.text-terra  { color: var(--terra); }
.text-navy   { color: var(--navy); }
.text-cream  { color: var(--cream); }
.text-white  { color: var(--white); }

.bg-cream  { background: var(--cream); }
.bg-navy   { background: var(--navy); }
.bg-sage   { background: var(--sage); }
.bg-white  { background: var(--white); }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-terra {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn-terra:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

/* ── Focus Visible ── */
:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   EMERGENCY BANNER
   ============================================================ */
#emergency-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--terra);
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

#emergency-banner a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(254,254,254,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}

#main-nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.nav-logo .paw-icon {
  color: var(--sage);
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--gray-100);
}

.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--gray-100); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.nav-drawer.open { transform: translateX(0); }

.drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  transition: background var(--transition);
}
.drawer-close:hover { background: var(--gray-100); }

.drawer-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.drawer-links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.drawer-links a:hover {
  background: var(--gray-100);
  color: var(--navy);
}

.drawer-links a.active {
  background: rgba(124,154,130,0.1);
  color: var(--sage-dark);
  border-left-color: var(--sage);
  font-weight: 600;
}

.drawer-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.drawer-footer .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }

.drawer-phone {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.drawer-phone a { color: var(--terra); font-weight: 600; }

/* Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,42,74,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* Page offset for fixed nav */
.page-top-offset {
  padding-top: calc(var(--banner-h) + var(--nav-h));
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.25rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-tagline {
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-brief {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  align-items: flex-start;
}

.footer-contact-item .icon {
  color: var(--sage-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--white); }

.footer-hours-mini {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   PAGE HERO (shared)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237C9A82' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   CARDS (shared)
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   HOME PAGE — HERO
   ============================================================ */
.home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.home-hero-content {
  padding: 6rem 4rem 6rem 2rem;
  max-width: 600px;
  margin-left: auto;
}

.home-hero-content .section-label { font-size: 0.8rem; }

.home-hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.home-hero-content h1 em {
  font-style: italic;
  color: var(--sage);
}

.home-hero-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-hero-image {
  position: relative;
  height: 100%;
  min-height: 100vh;
}

.home-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 15%);
}

/* Trust Bar */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  border-right: 1px solid var(--gray-200);
}

.trust-item:last-child { border-right: none; }

.trust-item .trust-icon {
  color: var(--sage);
  font-size: 1.1rem;
}

/* ── Welcome Section ── */
.welcome-section {
  background: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.welcome-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-image::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--sage);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.welcome-content .section-label { display: block; }

.welcome-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.8;
  border-left: 3px solid var(--sage);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.welcome-sig {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

/* ── Services Overview ── */
.services-overview { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(124,154,130,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--sage);
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  flex: 1;
}

.service-card .learn-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sage-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
}

.service-card:hover .learn-more { gap: 0.6rem; }

/* ── Stats Section ── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #243660 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,154,130,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number .stat-suffix {
  color: var(--sage-light);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── Testimonials ── */
.testimonials-section { background: var(--white); }

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 3rem 4rem;
  background: var(--cream);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.testimonial-author strong { color: var(--navy); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  transition: all var(--transition);
  cursor: pointer;
}

.carousel-btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--sage);
  width: 24px;
  border-radius: 4px;
}

/* ── Instagram Teaser ── */
.instagram-section { background: var(--cream); }

.instagram-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--sage-light) transparent;
}

.instagram-scroll::-webkit-scrollbar { height: 4px; }
.instagram-scroll::-webkit-scrollbar-track { background: transparent; }
.instagram-scroll::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 2px; }

.instagram-item {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-item:hover img { transform: scale(1.08); }

.instagram-handle {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.instagram-handle a {
  color: var(--sage-dark);
  font-weight: 600;
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-tabs-section { background: var(--white); }

/* Tab Bar */
.tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2.5rem;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.tab-btn:hover { color: var(--navy); }

.tab-btn.active {
  color: var(--navy);
  font-weight: 700;
  border-bottom-color: var(--sage);
}

/* Tab Panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
  color: var(--gray-800);
}

.service-list-item:last-child { border-bottom: none; }

.service-list-item::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.callout-box {
  background: rgba(124,154,130,0.08);
  border: 1px solid rgba(124,154,130,0.25);
  border-left: 4px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-800);
}

.callout-box.emergency {
  background: rgba(196,112,75,0.06);
  border-color: rgba(196,112,75,0.25);
  border-left-color: var(--terra);
}

.callout-box strong { color: var(--navy); }

.tab-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}

.tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Accordion (Services) */
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
  text-align: left;
}

.accordion-header:hover { background: var(--gray-100); }
.accordion-header.active { background: rgba(124,154,130,0.08); color: var(--sage-dark); }

.accordion-chevron {
  font-size: 0.8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.accordion-header.active .accordion-chevron { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 1.25rem;
  border-top: 1px solid var(--gray-200);
}

/* Pricing Table */
.pricing-section { background: var(--cream); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pricing-table th {
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-table td {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}

.pricing-table tr:last-child td { border-bottom: none; }

.pricing-table tr:nth-child(even) td { background: var(--gray-100); }

.pricing-table td:last-child {
  font-weight: 600;
  color: var(--sage-dark);
}

.pricing-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
  font-style: italic;
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img { transform: scale(1.04); }

.team-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card-name {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.team-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.team-card-creds {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.team-card-bio {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}

.team-card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gray-600);
  border-left: 3px solid var(--sage);
  padding-left: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.team-fun-fact {
  background: rgba(196,112,75,0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--terra-dark);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.team-fun-fact::before {
  content: '★';
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 1px;
}

.team-photo-full {
  background: var(--cream);
  padding: 4rem 0;
}

.team-photo-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 21/9;
}

.team-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-caption {
  text-align: center;
  margin-top: 1.25rem;
  font-style: italic;
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.seasonal-alert {
  background: var(--terra);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.resource-card:hover { box-shadow: var(--shadow-md); }

.resource-card-header {
  padding: 1.5rem 1.5rem 0;
}

.resource-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(124,154,130,0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.resource-card-header h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.resource-card-body {
  padding: 0 1.5rem 1.5rem;
}

.resource-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.resource-meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.resource-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
  border: none;
}

.resource-toggle:hover { background: var(--gray-200); }
.resource-toggle.open { background: rgba(124,154,130,0.12); color: var(--sage-dark); }

.resource-toggle-icon {
  font-size: 0.75rem;
  transition: transform var(--transition);
}

.resource-toggle.open .resource-toggle-icon { transform: rotate(180deg); }

.resource-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.resource-expanded-inner {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.resource-expanded-inner ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.resource-expanded-inner li {
  font-size: 0.875rem;
  color: var(--gray-700, #4a4845);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.resource-expanded-inner li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

/* Downloads */
.downloads-section { background: var(--cream); }

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.download-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.download-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.download-icon {
  width: 48px;
  height: 48px;
  background: rgba(124,154,130,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.download-info h4 {
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.download-info span {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-info-card h3 .icon {
  color: var(--sage);
  font-size: 1.2rem;
}

.map-placeholder {
  width: 100%;
  height: 180px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-address {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.contact-address .note {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 0.5rem;
}

.contact-phone-item {
  margin-bottom: 1rem;
}

.contact-phone-item .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 0.2rem;
}

.contact-phone-item .number {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-phone-item .number.emergency { color: var(--terra); }

.contact-phone-note {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-style: italic;
  margin-top: 0.75rem;
}

.hours-table {
  width: 100%;
  font-size: 0.875rem;
}

.hours-table tr td {
  padding: 0.4rem 0;
  color: var(--gray-600);
}

.hours-table tr td:first-child {
  font-weight: 600;
  color: var(--navy);
  width: 45%;
}

.hours-table tr.today td {
  color: var(--sage-dark);
  font-weight: 600;
}

/* Booking Form */
.booking-section { background: var(--cream); }

.booking-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.form-note {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  padding: 0.75rem 1rem;
  background: rgba(124,154,130,0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--sage);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

.form-label .required { color: var(--terra); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(124,154,130,0.15);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.form-error {
  font-size: 0.78rem;
  color: #e53e3e;
  display: none;
}

.form-error.visible { display: block; }

.form-select-wrapper {
  position: relative;
}

.form-select-wrapper::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
  font-size: 0.8rem;
}

.form-textarea { resize: vertical; min-height: 100px; }

/* Radio & Checkbox Groups */
.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--gray-800);
  cursor: pointer;
  padding: 0.45rem 0.85rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  user-select: none;
}

.radio-label:hover,
.checkbox-label:hover {
  border-color: var(--sage);
  background: rgba(124,154,130,0.06);
}

.radio-label input,
.checkbox-label input {
  accent-color: var(--sage);
  width: 15px;
  height: 15px;
}

/* File Upload Zone */
.file-upload-zone {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gray-100);
}

.file-upload-zone:hover,
.file-upload-zone.drag-over {
  border-color: var(--sage);
  background: rgba(124,154,130,0.06);
}

.file-upload-icon { font-size: 2rem; margin-bottom: 0.75rem; color: var(--gray-400); }
.file-upload-text { font-size: 0.9rem; color: var(--gray-600); }
.file-upload-text strong { color: var(--navy); }
.file-upload-hint { font-size: 0.78rem; color: var(--gray-400); margin-top: 0.4rem; }

/* Form Success */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.visible { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(124,154,130,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  color: var(--sage);
}

.form-success h3 { color: var(--navy); margin-bottom: 0.75rem; }
.form-success p { color: var(--gray-600); font-size: 0.95rem; }

/* FAQ Quick Links */
.faq-links-section { background: var(--white); }

.faq-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.faq-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.faq-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.faq-card-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.faq-card-text h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.faq-card-text p {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin: 0;
}

/* Print Styles */
@media print {
  #emergency-banner,
  #main-nav,
  .booking-section,
  .faq-links-section,
  .site-footer { display: none !important; }

  .page-top-offset { padding-top: 0 !important; }

  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
    box-shadow: none;
  }

  .contact-info-card { box-shadow: none; border: 1px solid #ccc; }

  body { font-size: 12pt; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1024px */
@media (max-width: 1024px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-content { padding: 5rem 2rem 3rem; max-width: 100%; margin: 0; }
  .home-hero-image { min-height: 50vh; }
  .home-hero-image::after { background: linear-gradient(to bottom, var(--cream) 0%, transparent 20%); }

  .welcome-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .welcome-image { aspect-ratio: 16/9; max-width: 600px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .tab-panel-inner { grid-template-columns: 1fr; }
  .tab-image { display: none; }

  .team-grid { grid-template-columns: 1fr; }
}

/* 768px */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }

  .trust-bar-inner { gap: 0; }
  .trust-item {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    width: 50%;
    justify-content: center;
  }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--gray-200); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .testimonial-slide { padding: 2rem 1.5rem; }
  .testimonial-text { font-size: 1rem; }

  .contact-info-grid { grid-template-columns: 1fr; }

  .resources-grid { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
  .faq-cards { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .booking-form-wrapper { padding: 1.75rem 1.25rem; }

  /* Services: hide tabs, show accordion */
  .tabs-nav { display: none; }
  .tab-panel { display: none !important; }
  .services-accordion { display: block !important; }

  .team-photo-placeholder { aspect-ratio: 16/9; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* 640px */
@media (max-width: 640px) {
  .section-pad { padding: 3.5rem 0; }

  .home-hero-content { padding: 4rem 1.5rem 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .instagram-item { width: 160px; height: 160px; }

  .pricing-table { font-size: 0.85rem; }
  .pricing-table th, .pricing-table td { padding: 0.75rem 1rem; }

  .contact-info-grid { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; }
}

/* Services accordion hidden by default on desktop */
.services-accordion { display: none; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Paw print decorative element */
.paw-decor {
  position: absolute;
  opacity: 0.04;
  font-size: 8rem;
  color: var(--sage);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
