/* =========================================
   PERFECT PAWS — perfectpaws.com.sg
   CSS Design System — v2
   ========================================= */

:root {
  --pink:        #E91E8C;
  --pink-dark:   #C2187A;
  --pink-light:  #FCE4F3;
  --cyan:        #00BCD4;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D6;
  --dark:        #1A1A1A;
  --mid:         #4A4A4A;
  --light:       #7A7A7A;
  --white:       #FFFFFF;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --font-head:   'Nunito', sans-serif;
  --font-body:   'Nunito', sans-serif;
  --transition:  0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- UTILITY ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn-primary:hover { background: var(--pink-dark); border-color: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,0.3); }
.btn-ghost { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-ghost:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.15); }
.btn-outline { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-outline:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233,30,140,0.1);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap { display: flex; align-items: center; gap: 0; }
.logo-img { height: 48px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mid);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--pink); background: rgba(233,30,140,0.06); }
.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
}
.nav-cta:hover { background: var(--pink-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(233,30,140,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }

/* ---- HERO ---- */
.hero {
  padding: 140px 24px 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,30,140,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.pet-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: var(--white);
  border: 1.5px solid rgba(233,30,140,0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow);
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.hero-text h1 em { font-style: normal; color: var(--pink); }
.hero-sub { font-size: 17px; color: var(--mid); margin-bottom: 36px; max-width: 460px; line-height: 1.65; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--mid); }
.trust-icon { font-size: 14px; }
.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hero-img-wrap:hover img { transform: scale(1.03); }
.hero-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
.hero-img-badge span:first-child { font-size: 22px; }

/* ---- SERVICES PREVIEW ---- */
.services-preview { padding: 90px 24px; background: var(--white); }
.services-preview h2 { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--mid); margin-bottom: 48px; max-width: 560px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(233,30,140,0.15); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 20px; }
.card-link { font-size: 14px; font-weight: 700; color: var(--pink); }
.card-link:hover { color: var(--pink-dark); }

/* ---- STORY TEASER ---- */
.story-teaser { padding: 90px 24px; background: var(--cream); }
.story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-text h2 { font-family: var(--font-head); font-size: clamp(28px, 3vw, 40px); font-weight: 900; margin-bottom: 20px; }
.story-text p { color: var(--mid); margin-bottom: 16px; line-height: 1.7; }
.story-text .btn { margin-top: 12px; }
.story-image { position: relative; }
.story-image img { border-radius: 20px; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.story-caption { margin-top: 12px; font-size: 12px; color: var(--light); text-align: center; font-style: italic; }

/* ---- GALLERY TEASER ---- */
.gallery-teaser { padding: 90px 24px; background: var(--white); }
.gallery-teaser h2 { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; margin-bottom: 12px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cta { text-align: center; }

/* ---- CTA BAND ---- */
.cta-band { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%); padding: 70px 24px; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 16px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: var(--white); padding: 60px 24px 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-img { height: 40px; width: auto; margin-bottom: 8px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tagline { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: rgba(255,255,255,0.08);
  border-radius: 50%; color: rgba(255,255,255,0.7); transition: all var(--transition);
}
.footer-social a:hover { background: var(--pink); color: var(--white); }
.footer-col h4 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 8px; transition: color var(--transition); line-height: 1.5; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--pink); }

/* ---- WHATSAPP FAB + BUBBLE ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(233,30,140,0.45);
  z-index: 999;
  transition: all var(--transition);
  cursor: pointer;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(233,30,140,0.55); background: var(--pink-dark); }

.wa-bubble {
  position: fixed;
  bottom: 92px; right: 24px;
  width: 310px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  overflow: hidden;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(233,30,140,0.12);
}
.wa-bubble.visible { transform: translateY(0); opacity: 1; pointer-events: all; }

.wa-bubble-header {
  background: var(--pink);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  color: white;
}
.wa-avatar { font-size: 22px; }
.wa-bubble-header strong { display: block; font-size: 14px; font-weight: 700; }
.wa-bubble-header small { font-size: 11px; opacity: 0.88; }
.wa-close-btn { margin-left: auto; background: none; border: none; color: white; font-size: 22px; cursor: pointer; line-height: 1; opacity: 0.8; padding: 0 2px; }
.wa-close-btn:hover { opacity: 1; }

.wa-bubble-greeting { padding: 14px 16px 10px; font-size: 13px; color: var(--mid); line-height: 1.5; border-bottom: 1px solid rgba(0,0,0,0.06); }

.wa-options { padding: 10px 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.wa-option {
  display: block;
  padding: 10px 14px;
  background: var(--pink-light);
  border: 1.5px solid rgba(233,30,140,0.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-dark);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.35;
}
.wa-option:hover { background: var(--pink); color: var(--white); border-color: var(--pink); transform: translateX(3px); }
.wa-option-icon { margin-right: 6px; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 130px 24px 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 4vw, 50px); font-weight: 900; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: var(--mid); max-width: 560px; margin: 0 auto; }

/* ---- GROOMING PAGE ---- */
.grooming-intro { padding: 80px 24px; background: var(--white); }
.grooming-intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grooming-intro h2 { font-family: var(--font-head); font-size: 34px; font-weight: 900; margin-bottom: 20px; }
.grooming-intro p { color: var(--mid); line-height: 1.7; margin-bottom: 14px; }
.grooming-intro img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.pricing-section { padding: 80px 24px; background: var(--cream); }
.pricing-section h2 { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; margin-bottom: 12px; }
.pricing-note { font-size: 14px; color: var(--light); margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); border: 2px solid transparent; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--pink); }
.pricing-card-head { padding: 24px; background: var(--cream); border-bottom: 1px solid rgba(0,0,0,0.06); }
.pricing-card.featured .pricing-card-head { background: var(--pink); color: var(--white); }
.pricing-tier { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; opacity: 0.7; }
.pricing-card.featured .pricing-tier { opacity: 0.9; color: rgba(255,255,255,0.9); }
.pricing-card-head h3 { font-family: var(--font-head); font-size: 22px; font-weight: 900; }
.pricing-includes { padding: 24px; }
.pricing-includes ul { list-style: none; }
.pricing-includes li { padding: 8px 0; font-size: 14px; color: var(--mid); border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; gap: 8px; }
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before { content: '✓'; color: var(--pink); font-weight: 800; flex-shrink: 0; }
.pricing-sizes { padding: 0 24px 24px; }
.pricing-sizes table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pricing-sizes th { text-align: left; padding: 6px 8px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--light); border-bottom: 2px solid rgba(0,0,0,0.06); font-weight: 700; }
.pricing-sizes td { padding: 8px; border-bottom: 1px solid rgba(0,0,0,0.04); color: var(--mid); }
.pricing-sizes td:first-child { color: var(--dark); font-weight: 600; }
.pricing-cta { padding: 0 24px 24px; }
.pricing-cta .btn { width: 100%; justify-content: center; }
.pricing-disclaimer { margin-top: 28px; padding: 18px 24px; background: rgba(233,30,140,0.06); border-radius: var(--radius-sm); border-left: 3px solid var(--pink); font-size: 13px; color: var(--mid); }

/* ---- SERVICES PAGE ---- */
.services-page { padding: 80px 24px; background: var(--white); }
.services-page h2 { font-family: var(--font-head); font-size: clamp(26px, 3vw, 36px); font-weight: 900; margin-bottom: 12px; }
.services-section { margin-bottom: 60px; }
.services-section:last-child { margin-bottom: 0; }
.services-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.services-section-inner.reverse { direction: rtl; }
.services-section-inner.reverse > * { direction: ltr; }
.services-section img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.services-section p { color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.brand-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.brand-tag { padding: 6px 14px; background: var(--cream); border-radius: 50px; font-size: 13px; font-weight: 700; color: var(--dark); border: 1.5px solid rgba(0,0,0,0.08); }

/* ---- ABOUT PAGE ---- */
.about-story { padding: 80px 24px; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-inner h2 { font-family: var(--font-head); font-size: clamp(26px, 3vw, 36px); font-weight: 900; margin-bottom: 20px; }
.about-inner p { color: var(--mid); line-height: 1.75; margin-bottom: 16px; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-images img { border-radius: var(--radius-sm); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.trust-points { padding: 80px 24px; background: var(--cream); }
.trust-points h2 { font-family: var(--font-head); font-size: clamp(26px, 3vw, 36px); font-weight: 900; margin-bottom: 40px; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.trust-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start; }
.trust-card-icon { font-size: 28px; flex-shrink: 0; }
.trust-card h4 { font-family: var(--font-head); font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.trust-card p { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ---- GALLERY PAGE ---- */
.gallery-page { padding: 80px 24px; background: var(--white); }
.gallery-page h2 { font-family: var(--font-head); font-size: clamp(26px, 3vw, 36px); font-weight: 900; margin-bottom: 40px; }
.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-full-grid .gallery-item { aspect-ratio: 1/1; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 80px 24px; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(26px, 3vw, 36px); font-weight: 900; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-detail h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--light); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { font-size: 15px; color: var(--mid); }
.contact-detail a:hover { color: var(--pink); }
.contact-form-wrap { background: var(--cream); border-radius: var(--radius); padding: 36px; }
.contact-form-wrap h3 { font-family: var(--font-head); font-size: 22px; font-weight: 900; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px; color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { height: 110px; resize: vertical; }
.form-consent { font-size: 12px; color: var(--light); margin-bottom: 18px; line-height: 1.5; }
.form-submit { width: 100%; justify-content: center; }

/* TY state — full replacement */
.form-ty {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.form-ty-icon { font-size: 56px; margin-bottom: 16px; }
.form-ty h4 { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--pink); margin-bottom: 10px; }
.form-ty p { color: var(--mid); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }

/* ---- TURNSTILE ---- */
.cf-turnstile { margin-bottom: 16px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner, .story-inner, .grooming-intro .container,
  .services-section-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .services-section-inner.reverse { direction: ltr; }
  .hero { padding: 110px 20px 60px; min-height: auto; }
  .hero-image { order: -1; }
  .hero-img-wrap { aspect-ratio: 16/9; max-height: 320px; }
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .about-images { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); padding: 20px; box-shadow: var(--shadow); gap: 4px; }
  .main-nav.open { display: flex; }
  .nav-cta { margin-left: 0; width: 100%; text-align: center; justify-content: center; }
  .hamburger { display: flex; }
}
@media (max-width: 520px) {
  .gallery-grid, .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .pet-badges { gap: 6px; }
  .wa-bubble { width: calc(100vw - 32px); right: 16px; }
}
