/* ==========================================================================
   Golden Spots Pet Grooming & Suites — shared stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Nunito+Sans:wght@400;600;700;800&display=swap');

:root{
  /* -- palette -- */
  --gold:        #c1932f;   /* primary brand gold */
  --gold-deep:   #96701f;   /* darker gold for hover/contrast */
  --gold-light:  #f4e3bd;   /* pale gold wash */
  --cream:       #fbf6ec;   /* page background */
  --cream-2:     #f4ecdb;   /* alt section background */
  --brown:       #3c2c1e;   /* primary text */
  --brown-soft:  #6b5a48;   /* secondary text */
  --sage:        #c1932f;   /* accent — play yards / nature */
  --sage-deep:   #c1932f;
  --white:       #ffffff;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 12px 32px -12px rgba(60, 44, 30, 0.25);
  --shadow-sm: 0 6px 16px -8px rgba(60, 44, 30, 0.2);
  --max-width: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
.skip-link{
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 300;
  background: var(--gold-deep);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top 0.18s ease;
}
.skip-link:focus{ top: 12px; }
section[id], #main-content{ scroll-margin-top: 90px; }
h1, h2, h3, h4{
  font-family: var(--font-display);
  color: var(--brown);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}
p{ margin: 0 0 1em; }
.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow{
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.9em;
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer;
}
.btn-primary{
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--gold-deep); transform: translateY(-2px); }
.btn-outline{
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-deep);
}
.btn-outline:hover{ background: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-light{
  background: var(--white);
  color: var(--gold-deep);
}
.btn-light:hover{ background: var(--gold-light); transform: translateY(-2px); }

/* -------------------- header / nav -------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(60, 44, 30, 0.08);
}
.nav-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 16px;
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  min-width: 0;
  flex-shrink: 1;
  color: var(--brown);
}
.logo img{ height: auto; max-height: 52px; width: auto; max-width: 100%; }
.nav-links{
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a{
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--brown-soft);
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-links a:hover, .nav-links a.active{
  background: var(--gold-light);
  color: var(--gold-deep);
}
.nav-cta{ display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; justify-content: flex-end; flex-shrink: 0; }
.nav-cta .btn{ padding: 10px 18px; font-size: 0.9rem; white-space: nowrap; }
.nav-cta .call-short{ display: none; }
.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span{
  display: block;
  width: 26px;
  height: 3px;
  background: var(--brown);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* -------------------- review badges -------------------- */
.review-badges{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 1.3rem;
}
.review-badge{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(60,44,30,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.review-badge:hover{ transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.review-badge img{ height: 18px; width: auto; vertical-align: middle; }
.review-badge svg{ flex-shrink: 0; }
.review-badge .stars{ color: #FFB400; font-size: 1rem; }
.review-badge .score{ color: #202124; font-weight: 800; font-size: 0.95rem; }
.review-badge .count{ color: #5f6368; font-size: 0.85rem; }

/* small single-badge variant used on Home / Grooming / Boarding */
.review-badge-inline{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 1.3em;
}
.review-badge-inline img{ height: 20px; width: auto; vertical-align: middle; }
.review-badge-inline .stars{ color: #FFB400; font-size: 1.1rem; }
.review-badge-inline .score{ color: #202124; font-weight: 800; }
.review-badge-inline .count{ color: #5f6368; font-size: 0.9rem; }

/* -------------------- hero -------------------- */
.hero{
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background: radial-gradient(120% 140% at 82% 0%, var(--gold-light) 0%, var(--cream) 55%);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1{
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  margin-bottom: 0.3em;
}
.hero p.lead{
  font-size: 1.15rem;
  color: var(--brown-soft);
  max-width: 46ch;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.6em;
}
.hero-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.2;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media-badge{
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 1rem;
}

/* small page hero (inner pages) */
.page-hero{
  padding: 56px 0 64px;
  background: radial-gradient(120% 140% at 82% 0%, var(--gold-light) 0%, var(--cream) 55%);
  text-align: center;
}
.page-hero h1{ font-size: clamp(2.1rem, 4.2vw, 3rem); }
.page-hero p.lead{ max-width: 56ch; margin: 0 auto; color: var(--brown-soft); font-size: 1.1rem; }
.page-hero .hero-actions{ justify-content: center; }

/* -------------------- section basics -------------------- */
.section{ padding: 84px 0; }
.section-alt{ background: var(--cream-2); }
.section-header{ max-width: 62ch; margin-bottom: 3rem; }
.section-header.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2{ font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.section-header p{ color: var(--brown-soft); font-size: 1.08rem; }

/* -------------------- feature grid (home) -------------------- */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(60,44,30,0.06);
}
.feature-card .icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}
.feature-card h3{ font-size: 1.12rem; margin-bottom: 0.4em; }
.feature-card p{ color: var(--brown-soft); font-size: 0.97rem; margin-bottom: 0; }

/* -------------------- service teaser cards (home) -------------------- */
.service-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}
.service-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover img{ transform: scale(1.06); }
.service-card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(60,44,30,0) 30%, rgba(38,27,17,0.88) 100%);
}
.service-card.plain::after{ content: none; }
.service-card-body{
  position: relative;
  z-index: 2;
  padding: 26px;
}
.service-card-body .eyebrow{ color: var(--gold-light); }
.service-card-body .eyebrow::before{ background: var(--gold-light); }
.service-card-body h3{ color: var(--white); font-size: 1.4rem; margin-bottom: 0.3em; }
.service-card-body p{ color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 0.8em; }
.service-card-body .link-arrow{ font-weight: 800; color: var(--gold-light); }

/* -------------------- lists / checklist cards -------------------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.check-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(60,44,30,0.06);
}
.check-card h3{ font-size: 1.2rem; }
.check-card ul{ margin-top: 1.1em; }
.check-card li{
  padding: 8px 0;
  border-bottom: 1px dashed rgba(60,44,30,0.12);
  color: var(--brown-soft);
  font-size: 0.98rem;
}
.check-card li:last-child{ border-bottom: none; }
.note{
  font-size: 0.9rem;
  color: var(--brown-soft);
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 8px;
}

/* -------------------- pricing -------------------- */
.pricing-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-grid.cols-4{ grid-template-columns: repeat(4, 1fr); }
.price-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(60,44,30,0.06);
  display: flex;
  flex-direction: column;
}
.price-card.featured{
  border-color: var(--gold);
  box-shadow: var(--shadow);
  position: relative;
}
.price-card.featured::before{
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card .sub{ color: var(--brown-soft); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.price-card .amount{
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0.2em 0 0;
}
.price-card .amount span{ font-size: 1rem; font-weight: 700; color: var(--brown-soft); }
.price-card .starting{ color: var(--brown-soft); font-size: 0.88rem; margin-bottom: 1.2em; }
.price-card ul{ margin-bottom: 1.4em; flex-grow: 1; }
.price-card ul li{
  padding: 8px 0;
  border-bottom: 1px dashed rgba(60,44,30,0.12);
  font-size: 0.95rem;
  color: var(--brown-soft);
}
.price-card ul li:last-child{ border-bottom: none; }

.rate-table{
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.2em;
  font-size: 0.94rem;
}
.rate-table th, .rate-table td{
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(60,44,30,0.1);
}
.rate-table th{
  color: var(--brown-soft);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}
.rate-table td{ font-weight: 700; color: var(--brown); }

/* -------------------- forms / docs list -------------------- */
.doc-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 1.4em 0;
}
.doc-list a{
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(60,44,30,0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 700;
  color: var(--brown);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.doc-list a:hover{ border-color: var(--gold); transform: translateX(4px); }
.doc-list a .doc-icon{
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* -------------------- gallery -------------------- */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery img:hover{
  transform: scale(1.03);
  box-shadow: var(--shadow);
}
.gallery img:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* -------------------- lightbox -------------------- */
.lightbox-overlay{
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 8, 0.92);
  display: none;
  z-index: 200;
}
.lightbox-overlay.open{ display: block; }
.lightbox-stage{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 84px 76px;
}
.lightbox-stage img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  display: block;
}
.lightbox-close,
.lightbox-arrow{
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.18s ease, transform 0.18s ease;
}
.lightbox-close:hover,
.lightbox-arrow:hover{ background: rgba(255,255,255,0.24); }
.lightbox-close{
  top: 18px; right: 18px;
  width: 42px; height: 42px;
  font-size: 1.6rem;
  line-height: 1;
}
.lightbox-arrow{
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  font-size: 1.8rem;
}
.lightbox-arrow:hover{ transform: translateY(-50%) scale(1.06); }
.lightbox-prev{ left: 14px; }
.lightbox-next{ right: 14px; }
.lightbox-counter{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
@media (max-width: 620px){
  .lightbox-stage{ padding: 70px 20px; }
  .lightbox-arrow{ width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-prev{ left: 6px; }
  .lightbox-next{ right: 6px; }
  .lightbox-close{ top: 12px; right: 12px; width: 36px; height: 36px; font-size: 1.4rem; }
}

/* -------------------- CTA band -------------------- */
.cta-band{
  background: linear-gradient(120deg, var(--gold-deep), var(--gold));
  border-radius: var(--radius);
  padding: 48px 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2{ color: var(--white); font-size: 1.7rem; margin-bottom: 0.2em; }
.cta-band p{ color: rgba(255,255,255,0.88); margin-bottom: 0; }

/* -------------------- footer -------------------- */
.site-footer{
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand{ display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img{ height: 44px; }
.footer-brand span{
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.15rem;
}
.site-footer h4{
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1em;
}
.site-footer a{ color: rgba(255,255,255,0.78); }
.site-footer a:hover{ color: var(--gold-light); }
.footer-links{ display: flex; flex-direction: column; gap: 10px; }
.footer-map{
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 0;
  width: 100%;
  height: 220px;
  filter: grayscale(0.15);
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* -------------------- responsive -------------------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ order: -1; }
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .service-grid{ grid-template-columns: 1fr; }
  .card-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .pricing-grid.cols-4{ grid-template-columns: repeat(2, 1fr); }
  .gallery{ grid-template-columns: repeat(3, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .nav-links{
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 24px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(60,44,30,0.08);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
  }
  .nav-links.open{ transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a{ padding: 14px 10px; border-bottom: 1px solid rgba(60,44,30,0.06); border-radius: 0; }
  .nav-toggle{ display: block; }
  .page-hero .review-badges{ display: flex; justify-content: center; width: 100%; }
  .feature-grid{ grid-template-columns: 1fr; }
  .pricing-grid.cols-4{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction: column; text-align: center; }
}
@media (max-width: 480px){
  .gallery{ grid-template-columns: 1fr 1fr; }
  .hero, .page-hero{ padding-top: 44px; }
  .section{ padding: 60px 0; }
  .nav-cta .call-full{ display: none; }
  .nav-cta .call-short{ display: inline; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto !important; }
}
