/* ============================================
   THE CAT WHISPERER - Main Stylesheet
   Warm, boutique, heartfelt design
   ============================================ */

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

/* Font variable aliases — explicit fallback chain */
:root {
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script:  'Dancing Script', 'Brush Script MT', cursive;
  --font-body:    'Lato', 'Helvetica Neue', Arial, sans-serif;
}

/* ---- CSS Variables ---- */
:root {
  --cream:       #FAF6F0;
  --warm-white:  #FFFDF9;
  --blush:       #F2D4C8;
  --rose:        #C9837A;
  --deep-rose:   #A05C55;
  --mauve:       #9B7B8A;
  --deep-mauve:  #6B4F5E;
  --sage:        #8FAF8A;
  --deep-sage:   #5C7A57;
  --gold:        #C9A96E;
  --deep-gold:   #9A7A45;
  --charcoal:    #3A3035;
  --soft-gray:   #8A8085;
  --light-gray:  #EDE8E3;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Lato', sans-serif;

  --shadow-soft: 0 4px 24px rgba(58,48,53,0.08);
  --shadow-med:  0 8px 40px rgba(58,48,53,0.13);
  --shadow-card: 0 2px 16px rgba(58,48,53,0.10);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  32px;
  --radius-xl:  48px;

  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.script { font-family: var(--font-script); }
.section-label {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--rose);
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

/* ---- Layout ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160,92,85,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--deep-gold);
  border-color: var(--deep-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(154,122,69,0.35);
}
.btn-sage {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.btn-sage:hover {
  background: var(--deep-sage);
  border-color: var(--deep-sage);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,246,240,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,131,122,0.15);
  transition: var(--transition);
}
.site-nav.scrolled {
  box-shadow: var(--shadow-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-main {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--deep-rose);
  letter-spacing: 0.01em;
}
.nav-logo .logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--rose);
  background: rgba(201,131,122,0.1);
}
.nav-links .nav-cta {
  background: var(--rose);
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover {
  background: var(--deep-rose);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FAF0EC 0%, #F5E8E0 40%, #EDE0D8 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(201,131,122,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(143,175,138,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero-text .eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--rose);
  display: block;
  margin-bottom: 0.8rem;
}
.hero-text h1 {
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--deep-rose);
}
.hero-text .hero-tagline {
  font-size: 1.15rem;
  color: var(--soft-gray);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-frame {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  position: relative;
}
.hero-img-frame img,
.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #F2D4C8, #E8C4B8);
  color: var(--deep-rose);
  font-family: var(--font-script);
  font-size: 1.2rem;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}
.placeholder-img .ph-icon { font-size: 4rem; opacity: 0.5; }
.placeholder-img .ph-label { font-size: 1rem; opacity: 0.7; font-family: var(--font-body); letter-spacing: 0.05em; }

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-badge .badge-icon { font-size: 2rem; }
.hero-badge .badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--charcoal);
}
.hero-badge .badge-text span {
  font-size: 0.78rem;
  color: var(--soft-gray);
  letter-spacing: 0.05em;
}
.hero-paw-float {
  position: absolute;
  top: 10%;
  right: -10px;
  font-size: 2.5rem;
  opacity: 0.18;
  animation: floatPaw 4s ease-in-out infinite;
}
@keyframes floatPaw {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--soft-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}
.divider-paw {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.2rem 0;
}
.divider-paw::before,
.divider-paw::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blush));
}
.divider-paw::after {
  background: linear-gradient(to left, transparent, var(--blush));
}
.divider-paw span { font-size: 1.2rem; }

/* ---- Cards ---- */
.card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
}

/* ---- Services Preview ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(201,131,122,0.1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--mauve));
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-med);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  margin-bottom: 0.8rem;
  color: var(--deep-rose);
}
.service-card p {
  color: var(--soft-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: linear-gradient(135deg, var(--deep-mauve) 0%, var(--deep-rose) 100%);
  color: #fff;
}
.testimonials-section .section-label { color: var(--blush); }
.testimonials-section h2 { color: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.testimonial-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.92;
}
.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.reviewer-info strong { display: block; font-size: 0.9rem; }
.reviewer-info span { font-size: 0.78rem; opacity: 0.7; }

/* ---- About Snippet ---- */
.about-snippet {
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-med);
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  border: 5px solid var(--warm-white);
}
.about-text .quote-pull {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rose);
  border-left: 3px solid var(--rose);
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  line-height: 1.6;
}
.about-text p {
  color: var(--soft-gray);
  margin-bottom: 1rem;
  line-height: 1.85;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--rose);
  display: block;
}
.stat-item .stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-gray);
}

/* ---- Shop Preview ---- */
.shop-preview { background: var(--light-gray); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.8rem;
}
.product-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-med);
}
.product-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.product-img .placeholder-img {
  background: linear-gradient(145deg, #F5E8E0, #EDD8CC);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rose);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.product-info {
  padding: 1.2rem;
}
.product-info h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.product-info .product-desc {
  font-size: 0.83rem;
  color: var(--soft-gray);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-rose);
}
.btn-cart {
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cart:hover { background: var(--deep-rose); }

/* ---- Memoriam Teaser ---- */
.memoriam-teaser {
  background: linear-gradient(135deg, #2A2030 0%, #3A2535 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.memoriam-teaser .section-label { color: var(--gold); }
.memoriam-teaser h2 { color: #fff; margin-bottom: 1rem; }
.memoriam-teaser p {
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.8;
  line-height: 1.8;
}
.memoriam-teaser .btn-gold { margin-top: 0.5rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-main {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--blush);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--rose);
  transform: translateY(-2px);
}
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--blush); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: var(--blush); }
.footer-paw { font-size: 1.2rem; opacity: 0.4; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #FAF0EC 0%, #F5E8E0 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(201,131,122,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .eyebrow {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--rose);
  display: block;
  margin-bottom: 0.5rem;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--soft-gray);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---- Paw print decorations ---- */
.paw-decor {
  position: absolute;
  font-size: 6rem;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-img-frame { max-width: 340px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-text .hero-tagline { margin: 0 auto 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--cream);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: var(--shadow-soft);
    gap: 0.5rem;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-stats { justify-content: center; }
  .hero-badge { display: none; }
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 1.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.fade-in-up-delay-1 { animation-delay: 0.20s; opacity: 0; }
.fade-in-up-delay-2 { animation-delay: 0.40s; opacity: 0; }
.fade-in-up-delay-3 { animation-delay: 0.60s; opacity: 0; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-rose    { color: var(--rose); }
.text-mauve   { color: var(--mauve); }
.text-gold    { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
/* ============================================
   BREATHING TRANSITIONS & ENHANCED PAWS
   ============================================ */

/* ---- Global breathing reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ---- Image hover — slow gentle zoom ---- */
.product-card-full:hover img,
.article-card:hover .article-img img,
.memorial-card:hover .memorial-photo img,
.service-img-frame:hover img,
.gallery-item:hover img {
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Paw prints — breathe & glow ---- */
.divider-paw span {
  font-size: 1.5rem;
  display: inline-block;
  animation: pawBreathe 3.5s ease-in-out infinite;
}
@keyframes pawBreathe {
  0%, 100% { transform: scale(1);    opacity: 0.65; }
  50%       { transform: scale(1.18); opacity: 1;    }
}
.paw-decor {
  font-size: 9rem !important;
  opacity: 0.055 !important;
}
.hero-paw-float {
  font-size: 3.2rem !important;
  opacity: 0.25 !important;
}
.footer-paw {
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  opacity: 0.55;
}
.promise-paws {
  font-size: 2.2rem;
  letter-spacing: 0.6rem;
  opacity: 0.5;
  animation: pawBreathe 4s ease-in-out infinite;
}

/* ---- Nav — soft underline breath ---- */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: left 0.5s cubic-bezier(0.4,0,0.2,1),
              right 0.5s cubic-bezier(0.4,0,0.2,1),
              opacity 0.5s ease;
  opacity: 0;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  left: 12px;
  right: 12px;
  opacity: 1;
}
.nav-links .nav-cta::after { display: none; }

/* ---- Cards — breathe on hover ---- */
.service-card,
.why-card,
.value-card,
.addon-card,
.expect-card,
.faq-item,
.product-card,
.product-card-full,
.article-card,
.memorial-card,
.pricing-card,
.testimonial-card {
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.6s cubic-bezier(0.4,0,0.2,1),
              border-color 0.6s ease,
              background 0.6s ease;
}

/* ---- Buttons — soft press feel ---- */
.btn {
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:active {
  transform: translateY(-1px);
  transition-duration: 0.15s !important;
}

/* ---- Section transitions — fade between sections ---- */
.section, .section-sm {
  transition: background 0.8s ease;
}

/* ---- Candle flicker — slower, more meditative ---- */
@keyframes flicker {
  0%, 100% { transform: scale(1) rotate(-2deg);   opacity: 1;    }
  20%       { transform: scale(1.04) rotate(2deg); opacity: 0.96; }
  40%       { transform: scale(0.98) rotate(-1deg); opacity: 1;   }
  60%       { transform: scale(1.03) rotate(3deg); opacity: 0.94; }
  80%       { transform: scale(0.97) rotate(-2deg); opacity: 1;   }
}

/* ---- Float animation — slower, dreamier ---- */
@keyframes floatPaw {
  0%, 100% { transform: translateY(0)    rotate(-10deg); }
  50%       { transform: translateY(-16px) rotate(6deg);  }
}
.hero-paw-float {
  animation: floatPaw 5s ease-in-out infinite !important;
}

/* ---- Rotate rings — slower, meditative ---- */
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.vet-img-ring  { animation: rotateSlow 28s linear infinite; }
.vet-img-dots  { animation: rotateSlow 45s linear infinite reverse; }

/* ---- Gallery overlay — soft fade ---- */
.gallery-overlay {
  transition: background 0.6s ease;
}
.gallery-overlay span {
  transition: opacity 0.6s ease;
}

/* ---- Social buttons ---- */
.social-btn {
  transition: background 0.5s ease, transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Cart button ---- */
.btn-cart, .btn-add {
  transition: background 0.5s ease, transform 0.4s cubic-bezier(0.4,0,0.2,1) !important;
}
