/* ============================================================
   For Pup Sake Grooming — styles
   ============================================================ */

:root {
  --cream:    #FBF6EE;
  --cream-2:  #F2E9DB;
  --sand:     #E7DBCA;
  --ink:      #3A342E;
  --ink-soft: #6f665b;
  --sage:     #93826E;   /* warm taupe (from logo frame) — primary */
  --sage-dk:  #5E4F41;   /* deep mocha — dark surfaces & headings */
  --coral:    #B9727F;   /* blush rose (from logo florals) — CTA */
  --coral-dk: #A25C69;
  --dusty:    #9AA6C4;   /* soft dusty blue accent (from logo florals) */
  --white:    #ffffff;

  --radius:   18px;
  --radius-lg:28px;
  --shadow:   0 18px 40px -20px rgba(94, 79, 65, .35);
  --shadow-sm:0 8px 22px -14px rgba(94, 79, 65, .4);
  --maxw:     1140px;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 500; line-height: 1.12; margin: 0; letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.28rem; font-weight: 600; }
em { font-style: italic; color: var(--sage-dk); }

p  { margin: 0 0 1rem; }
a  { color: var(--sage-dk); text-decoration: none; }

img, svg, iframe { max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { fill: currentColor; }
.btn--primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--coral-dk); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--sage-dk); border-color: rgba(94,79,65,.28); }
.btn--ghost:hover { background: var(--sage-dk); color: #fff; border-color: var(--sage-dk); transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 248, 241, .82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(94,79,65,.08);
}
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: .7rem 24px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav__brand { display: flex; align-items: center; gap: .6rem; color: var(--ink); }
.nav__logo { position: relative; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--sage); color: #fff; flex: none; overflow: hidden; }
.nav__logo svg { fill: currentColor; }
.nav__logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nav__name { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; line-height: 1; display: flex; flex-direction: column; }
.nav__name-sub { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); font-family: var(--font-body); font-weight: 700; margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links > a { font-weight: 600; color: var(--ink); font-size: .98rem; position: relative; }
.nav__links > a:not(.btn):hover { color: var(--sage-dk); }
.nav__links > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--coral); transition: width .2s ease; }
.nav__links > a:not(.btn):hover::after { width: 100%; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 82% 20%, rgba(147,130,110,.24), transparent 60%),
    radial-gradient(50% 50% at 8% 90%, rgba(185,114,127,.16), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--cream-2));
}
.hero__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) 24px clamp(3rem, 6vw, 5.5rem);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; color: var(--sage-dk); font-weight: 700; font-size: .82rem;
  padding: .4rem .9rem; border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 1.3rem;
}
.eyebrow svg { fill: #F3B33D; }
.hero h1 { margin-bottom: 1.1rem; }
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 30rem; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }
.hero__trust { display: flex; align-items: center; gap: 1.4rem; }
.hero__trust strong { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--sage-dk); }
.hero__trust span { font-size: .9rem; color: var(--ink-soft); }
.hero__trust-divide { width: 1px; height: 38px; background: rgba(94,79,65,.2); }

.hero__art { position: relative; display: grid; place-items: center; }
.hero__logo { width: min(440px, 92%); aspect-ratio: 1; display: block; }
.hero__logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; box-shadow: 0 22px 46px -14px rgba(94,79,65,.45); }
.hero__logo-fallback {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #fff, var(--sand));
  place-items: center; box-shadow: var(--shadow); border: 10px solid #fff;
}
.hero__logo-fallback svg { width: 78%; color: var(--sage); }
.hero__badge {
  position: absolute; bottom: 6%; left: -4%;
  background: #fff; border-radius: 16px; padding: .8rem 1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .82rem; line-height: 1.25;
}
.hero__badge svg { fill: var(--coral); flex: none; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--sage-dk); color: #fff; }
.trustbar__inner { max-width: var(--maxw); margin: 0 auto; padding: 1.1rem 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; }
.trustbar__item { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .95rem; }
.trustbar__item svg { fill: #fff; opacity: .9; flex: none; }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--tint { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.section__head { max-width: 44rem; margin: 0 auto 3rem; text-align: center; }
.section__head h2 { margin-bottom: .9rem; }
.section__head p { color: var(--ink-soft); font-size: 1.1rem; }
.kicker { display: inline-block; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--coral); margin-bottom: .8rem; }
.section__note { text-align: center; color: var(--ink-soft); margin-top: 2.2rem; }
.section__note a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(94,79,65,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 15px; background: var(--cream-2); color: var(--sage-dk); margin-bottom: 1.1rem; }
.card__icon svg { fill: currentColor; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3.5rem; align-items: center; }
.about__media { position: relative; }
.about__photo--main {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #fff, var(--sand));
  box-shadow: var(--shadow); border: 8px solid #fff;
}
.about__photo--main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__ph-fallback { position: absolute; inset: 0; place-items: center; }
.about__ph-fallback svg { width: 62%; color: var(--coral); }
.about__photo--inset {
  position: absolute; left: -18px; bottom: -22px; width: 46%; aspect-ratio: 3/4; z-index: 2;
  border-radius: 18px; overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow);
}
.about__photo--inset img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__stat {
  position: absolute; right: -12px; bottom: 18px; z-index: 2; background: var(--sage-dk); color: #fff;
  padding: 1rem 1.3rem; border-radius: 16px; box-shadow: var(--shadow); text-align: center;
}
.about__stat strong { display: block; font-family: var(--font-head); font-size: 1.5rem; }
.about__stat span { font-size: .8rem; opacity: .9; }
.about__body h2 { margin-bottom: 1.1rem; }
.about__body p { color: var(--ink-soft); }
.checklist { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: .7rem; }
.checklist li { position: relative; padding-left: 2rem; font-weight: 600; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage); color: #fff; display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__item {
  aspect-ratio: 3 / 4; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cream-2), var(--sand));
  overflow: hidden; position: relative; border: 1px solid rgba(94,79,65,.06);
  box-shadow: var(--shadow-sm);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__cta { text-align: center; margin-top: 2rem; }

/* ---------- Stars ---------- */
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; fill: #F3B33D; }
.stars--lg { justify-content: center; margin-top: 1rem; }
.stars--lg svg { width: 30px; height: 30px; }

/* ---------- Reviews ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { margin: 0; background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(94,79,65,.06); }
.review p { font-size: 1.05rem; margin: .9rem 0 1.1rem; }
.review footer { font-weight: 700; color: var(--sage-dk); font-size: .95rem; }
.reviews__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2.4rem; }

/* ---------- Visit / contact ---------- */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.visit__info h2 { margin-bottom: 1rem; }
.visit__info > p { color: var(--ink-soft); font-size: 1.08rem; }
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: center; }
.contact-list__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--cream-2); color: var(--sage-dk); flex: none; }
.contact-list__icon svg { fill: currentColor; }
.contact-list__label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); font-weight: 700; }
.contact-list a { font-weight: 700; font-size: 1.05rem; }
.hours { background: var(--cream-2); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin-bottom: 1.8rem; }
.hours h3 { display: flex; align-items: center; gap: .5rem; margin-bottom: .6rem; color: var(--sage-dk); }
.hours h3 svg { fill: var(--sage-dk); }
.hours table { width: 100%; border-collapse: collapse; }
.hours th { text-align: left; font-weight: 600; padding: .35rem 0; color: var(--ink); }
.hours td { text-align: right; padding: .35rem 0; color: var(--ink-soft); font-weight: 600; }
.hours .closed { color: var(--coral-dk); }
.visit__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 8px solid #fff; height: 100%; min-height: 460px; }
.visit__map iframe { width: 100%; height: 100%; min-height: 444px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--sage-dk); color: #fff; padding-top: 3rem; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; align-items: center; justify-content: space-between; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer__brand { display: flex; align-items: center; gap: .8rem; }
.footer__brand .nav__logo { background: rgba(255,255,255,.14); }
.footer__brand strong { display: block; font-family: var(--font-head); font-size: 1.2rem; }
.footer__brand span { font-size: .88rem; opacity: .8; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer__links a { color: #fff; font-weight: 600; opacity: .88; }
.footer__links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.footer__contact { text-align: right; }
.footer__contact a { color: #fff; font-weight: 800; font-size: 1.1rem; display: block; }
.footer__contact span { font-size: .86rem; opacity: .8; }
.footer__bar { max-width: var(--maxw); margin: 0 auto; padding: 1.2rem 24px 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .84rem; opacity: .82; }
.footer__bar svg { fill: var(--coral); vertical-align: -1px; }

/* ---------- Floating call button ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60; display: none;
  width: 58px; height: 58px; border-radius: 50%; background: var(--coral); color: #fff;
  place-items: center; box-shadow: 0 10px 28px -8px rgba(166,92,105,.6);
}
.fab svg { fill: #fff; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { order: 2; }
  .hero__art { order: 1; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__badge { left: 2%; }
  .cards, .reviews { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__stat { right: 12px; }
  .visit { grid-template-columns: 1fr; }
  .visit__map { min-height: 360px; }
}

@media (max-width: 640px) {
  .nav__links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 1.2rem 24px 1.8rem; gap: 1.1rem;
    box-shadow: 0 20px 30px -18px rgba(0,0,0,.3); transform: translateY(-140%);
    transition: transform .3s ease; border-bottom: 1px solid rgba(94,79,65,.1);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links > a { font-size: 1.1rem; }
  .nav__cta { text-align: center; justify-content: center; }
  .nav__toggle { display: flex; }
  .cards, .reviews { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero__trust { flex-wrap: wrap; }
  .fab { display: grid; }
  .footer__inner, .footer__contact { text-align: center; justify-content: center; }
  .footer__contact { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
