/* ============================================================
   {{BUSINESS_NAME}} — warm, joyful pet services
   Palette: amber #F59E0B / gold #D97706, warm cream, earth accents
   Type: Bricolage Grotesque (display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --amber: #F59E0B;
  --gold: #D97706;
  --gold-deep: #B45309;
  --cream: #FFF8EE;
  --cream-soft: #FDF1DF;
  --cream-deep: #F7E7CE;
  --ink: #3A2A1A;
  --ink-soft: #6E5A45;
  --ink-faint: #9A876F;
  --earth: #B8703E;       /* terracotta */
  --sage: #7E8B5B;        /* natural green accent */
  --white: #FFFDFA;
  --line: rgba(58, 42, 26, 0.10);
  --shadow-sm: 0 4px 14px rgba(120, 72, 20, 0.08);
  --shadow-md: 0 14px 36px rgba(120, 72, 20, 0.14);
  --shadow-lg: 0 28px 60px rgba(120, 72, 20, 0.18);
  --r-lg: 32px;
  --r-md: 22px;
  --r-sm: 14px;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1); /* gentle overshoot */
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .3s ease, background .25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #fff; box-shadow: 0 10px 22px rgba(217, 119, 6, 0.32);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 30px rgba(217, 119, 6, 0.42); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: var(--white); color: var(--gold-deep);
  box-shadow: inset 0 0 0 2px rgba(217, 119, 6, 0.28);
}
.btn-ghost:hover { transform: translateY(-3px); background: var(--cream-soft); box-shadow: inset 0 0 0 2px rgba(217, 119, 6, 0.5); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 238, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .3s ease, background .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 14px; color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.34);
  transition: transform .4s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-10deg) scale(1.06); }
.brand-name {
  font-family: "Bricolage Grotesque", sans-serif; font-size: 20px;
  font-weight: 700; letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-links a {
  position: relative; font-weight: 600; font-size: 15px; color: var(--ink-soft);
  padding: 8px 14px; border-radius: 100px; transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--gold-deep); background: var(--cream-deep); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700;
  font-size: 14px; color: var(--gold-deep);
}
.phone-link:hover { color: var(--amber); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  border-radius: 12px; background: var(--cream-deep); border: none; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 19px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Stars ---------- */
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 17px; height: 17px; }
.stars.stars-sm svg { width: 14px; height: 14px; }
.stars.stars-review svg { width: 20px; height: 20px; }
.star-empty { color: rgba(217, 119, 6, 0.25); }

/* ---------- Blobs & floaters ---------- */
.blob { position: absolute; border-radius: 47% 53% 60% 40% / 45% 55% 45% 55%; filter: blur(2px); z-index: 0; pointer-events: none; }
.blob-1 { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.22), rgba(245, 158, 11, 0)); animation: drift 18s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; bottom: 40px; left: -130px; background: radial-gradient(circle at 60% 40%, rgba(184, 112, 62, 0.16), rgba(184, 112, 62, 0)); animation: drift 22s ease-in-out infinite reverse; }
.blob-3 { width: 460px; height: 460px; top: 10%; left: -180px; background: radial-gradient(circle at 50% 50%, rgba(126, 139, 91, 0.14), rgba(126, 139, 91, 0)); animation: drift 25s ease-in-out infinite; }
.blob-4 { width: 420px; height: 420px; bottom: -120px; right: -140px; background: radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0)); animation: drift 20s ease-in-out infinite reverse; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -24px) rotate(12deg); }
  66% { transform: translate(-22px, 18px) rotate(-8deg); }
}

.float-paw { position: absolute; width: 34px; height: 34px; z-index: 1; opacity: 0.5; pointer-events: none;
  background: var(--gold);
  -webkit-mask: var(--paw) center / contain no-repeat; mask: var(--paw) center / contain no-repeat;
}
:root { --paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='6.5' cy='9' rx='2' ry='2.6'/%3E%3Cellipse cx='11' cy='6.4' rx='2' ry='2.7'/%3E%3Cellipse cx='15.6' cy='6.6' rx='2' ry='2.7'/%3E%3Cellipse cx='19.4' cy='9.6' rx='1.8' ry='2.4'/%3E%3Cpath d='M13 11.4c2.4 0 4.7 1.7 5.4 4 .5 1.7-.7 3.3-2.5 3.3-1 0-1.9-.5-2.9-.5s-1.9.5-2.9.5c-1.8 0-3-1.6-2.5-3.3.7-2.3 3-4 5.4-4z'/%3E%3C/svg%3E"); }
.float-paw-a { top: 22%; left: 8%; animation: bob 6s ease-in-out infinite; transform: rotate(-18deg); }
.float-paw-b { top: 64%; right: 12%; width: 26px; height: 26px; opacity: 0.4; animation: bob 7.5s ease-in-out infinite 1s; transform: rotate(22deg); }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-18deg); } 50% { transform: translateY(-16px) rotate(-8deg); } }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 110px; overflow: hidden; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.rating-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); padding: 8px 16px 8px 12px; border-radius: 100px;
  box-shadow: var(--shadow-sm); font-size: 14px; font-weight: 600; color: var(--ink-soft);
}
.rating-pill strong { color: var(--ink); }
.hero-title { font-size: clamp(44px, 7vw, 76px); margin: 22px 0 14px; font-weight: 800; }
.hero-sub { display: flex; align-items: center; gap: 12px; font-size: 19px; font-weight: 600; color: var(--gold-deep); margin-bottom: 18px; flex-wrap: wrap; }
.hero-category { background: var(--cream-deep); padding: 5px 14px; border-radius: 100px; }
.dot-sep { width: 5px; height: 5px; border-radius: 50%; background: var(--ink-faint); }
.hero-city { color: var(--ink-soft); }
.hero-desc { font-size: 18px; color: var(--ink-soft); max-width: 30em; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trustline { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; }
.hero-trustline li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.tick { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(126, 139, 91, 0.18); position: relative; }
.tick::after { content: ""; width: 9px; height: 5px; border-left: 2px solid var(--sage); border-bottom: 2px solid var(--sage); transform: rotate(-45deg) translate(0.5px, -1px); }

/* hero media */
.hero-media { position: relative; }
.hero-photo-frame {
  position: relative; width: 100%; aspect-ratio: 4 / 4.4; max-width: 460px; margin: 0 auto;
  border-radius: 56% 44% 52% 48% / 50% 52% 48% 50%;
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 56% 44% 52% 48% / 50% 52% 48% 50%; }
  50% { border-radius: 48% 52% 44% 56% / 56% 48% 52% 44%; }
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.dash-ring {
  position: absolute; inset: -26px; border-radius: 50%;
  border: 2px dashed rgba(217, 119, 6, 0.4); z-index: -1;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-badge {
  position: absolute; bottom: 6%; left: -6%; z-index: 3;
  background: var(--white); border-radius: 20px; padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 3px;
  animation: bob 5s ease-in-out infinite;
}
.hero-badge-num { font-family: "Bricolage Grotesque", sans-serif; font-size: 26px; font-weight: 800; color: var(--gold-deep); line-height: 1; }
.hero-badge-label { font-size: 12px; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.05em; }

/* wave */
.wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.wave svg { width: 100%; height: 90px; display: block; }
.wave-cream path { fill: var(--cream-soft); }

/* ---------- Section heads ---------- */
.section-head { max-width: 660px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255, 248, 238, 0.85); }
.section-head h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 14px; }
.section-lede { font-size: 18px; color: var(--ink-soft); }

/* ---------- Trust ---------- */
.trust { background: var(--cream-soft); padding: 30px 0 80px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-card {
  background: var(--white); border-radius: var(--r-md); padding: 30px 26px;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .3s ease;
}
.trust-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.trust-icon {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.16), rgba(217, 119, 6, 0.16));
  color: var(--gold-deep); margin-bottom: 18px;
  transition: transform .4s var(--ease);
}
.trust-card:hover .trust-icon { transform: rotate(-8deg) scale(1.08); }
.trust-icon svg { width: 28px; height: 28px; }
.trust-card h3 { font-size: 19px; margin-bottom: 8px; }
.trust-card p { font-size: 15px; color: var(--ink-soft); }

/* ---------- Gallery ---------- */
.gallery-section { padding: 80px 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(58, 42, 26, 0.34), transparent 55%);
  opacity: 0; transition: opacity .4s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { opacity: 1; }
.gi-1 { grid-column: span 2; grid-row: span 2; }
.gi-2 { grid-column: span 2; }
.gi-3 { grid-column: span 1; }
.gi-4 { grid-column: span 1; }
.gi-5 { grid-column: span 2; }

/* ---------- Services ---------- */
.services { position: relative; padding: 80px 0 90px; overflow: hidden; background: var(--cream-soft); }
.services .container { position: relative; z-index: 2; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.service-card {
  position: relative; background: var(--white); border-radius: var(--r-lg);
  padding: 38px 32px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .3s ease;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px;
  border-radius: 50%; background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent 70%);
  transition: transform .5s var(--ease);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scale(1.6); }
.service-featured {
  background: linear-gradient(160deg, #FFFDFA, #FFF3DF);
  box-shadow: 0 18px 44px rgba(217, 119, 6, 0.22); border: 2px solid rgba(245, 158, 11, 0.3);
}
.featured-tag {
  position: absolute; top: 20px; right: 22px; z-index: 2;
  background: linear-gradient(135deg, var(--amber), var(--gold)); color: #fff;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
}
.service-icon {
  position: relative; z-index: 2; display: grid; place-items: center;
  width: 62px; height: 62px; border-radius: 18px; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--amber), var(--gold)); color: #fff;
  box-shadow: 0 10px 22px rgba(217, 119, 6, 0.3);
  transition: transform .4s var(--ease);
}
.service-card:hover .service-icon { transform: rotate(8deg) scale(1.08); }
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { position: relative; z-index: 2; font-size: 24px; margin-bottom: 10px; }
.service-card > p { position: relative; z-index: 2; font-size: 15.5px; color: var(--ink-soft); margin-bottom: 18px; }
.service-list { position: relative; z-index: 2; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.service-list li { position: relative; padding-left: 26px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: rgba(126, 139, 91, 0.2);
}
.service-list li::after {
  content: ""; position: absolute; left: 5px; top: 8px; width: 7px; height: 4px;
  border-left: 2px solid var(--sage); border-bottom: 2px solid var(--sage); transform: rotate(-45deg);
}

/* ---------- About ---------- */
.about { padding: 90px 0; }
.about-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-photo-frame {
  position: relative; z-index: 2; border-radius: 40% 60% 58% 42% / 52% 44% 56% 48%;
  overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow-lg); border: 8px solid var(--white);
  animation: morph 16s ease-in-out infinite reverse;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
  position: absolute; bottom: -24px; right: -10px; width: 130px; height: 130px; z-index: 1;
  background: var(--gold); opacity: 0.14;
  -webkit-mask: var(--paw) center / contain no-repeat; mask: var(--paw) center / contain no-repeat;
  transform: rotate(14deg);
}
.about-copy h2 { margin: 12px 0 18px; }
.about-copy p { font-size: 17px; color: var(--ink-soft); margin-bottom: 16px; }
.about-stats { display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap; }
.stat-num { display: block; font-family: "Bricolage Grotesque", sans-serif; font-size: 38px; font-weight: 800; color: var(--gold-deep); line-height: 1; }
.stat-star { font-size: 22px; color: var(--amber); }
.stat-label { font-size: 14px; font-weight: 600; color: var(--ink-faint); }

/* ---------- Hours strip ---------- */
.hours-strip { padding: 0 0 30px; }
.hours-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-radius: var(--r-lg); padding: 34px 42px; color: #fff;
  box-shadow: 0 20px 44px rgba(180, 83, 9, 0.3);
}
.hours-left { display: flex; align-items: center; gap: 20px; }
.hours-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,0.18); color: #fff; flex-shrink: 0; }
.hours-icon svg { width: 28px; height: 28px; }
.hours-text { font-family: "Bricolage Grotesque", sans-serif; font-size: 22px; font-weight: 600; color: #fff; }
.hours-strip .btn-primary { background: #fff; color: var(--gold-deep); box-shadow: 0 10px 22px rgba(120,72,20,0.2); }
.hours-strip .btn-primary:hover { background: var(--cream); }

/* ---------- Reviews ---------- */
.reviews { position: relative; padding: 80px 0 90px; overflow: hidden; background: var(--cream-soft); }
.reviews .container { position: relative; z-index: 2; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.review-card {
  position: relative; background: var(--white); border-radius: var(--r-lg);
  padding: 40px 36px 32px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.quote-mark {
  position: absolute; top: 14px; right: 30px;
  font-family: "Bricolage Grotesque", serif; font-size: 90px; line-height: 1;
  color: rgba(245, 158, 11, 0.16); font-weight: 800;
}
.review-card .stars-review { margin-bottom: 18px; }
.review-card blockquote {
  font-family: "Bricolage Grotesque", sans-serif; font-size: 20px; font-weight: 500;
  line-height: 1.45; color: var(--ink); margin-bottom: 24px; letter-spacing: -0.01em;
}
.review-card figcaption { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--earth), var(--gold)); color: #fff;
  font-weight: 800; font-size: 18px; flex-shrink: 0;
  font-family: "Bricolage Grotesque", sans-serif;
}
.reviewer-name { display: block; font-weight: 700; font-size: 15.5px; }
.reviewer-role { display: block; font-size: 13px; color: var(--ink-faint); font-weight: 600; }

/* ---------- Contact ---------- */
.contact { padding: 90px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }
.contact-copy h2 { margin: 12px 0 14px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 30px 0; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--cream-deep); color: var(--gold-deep); flex-shrink: 0; }
.contact-ic svg { width: 22px; height: 22px; }
.contact-label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); }
.contact-value { font-size: 17px; font-weight: 700; color: var(--ink); }
a.contact-value:hover { color: var(--gold); }
.contact-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* map card */
.map-card {
  display: flex; flex-direction: column; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--white);
  transition: transform .4s var(--ease), box-shadow .3s ease;
}
.map-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.map-visual {
  position: relative; aspect-ratio: 5 / 4;
  background:
    radial-gradient(circle at 70% 30%, rgba(126, 139, 91, 0.16), transparent 60%),
    linear-gradient(135deg, #F5EAD6, #EFE0C7);
  overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,42,26,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,42,26,0.07) 1px, transparent 1px);
  background-size: 38px 38px;
}
.map-route {
  position: absolute; left: 12%; top: 78%; width: 70%; height: 0;
  border-top: 4px dashed var(--gold);
  transform: rotate(-26deg); transform-origin: left center; border-radius: 4px;
}
.map-pin {
  position: absolute; top: 32%; left: 56%; width: 42px; height: 42px; color: var(--gold-deep);
  filter: drop-shadow(0 6px 8px rgba(120,72,20,0.3));
  animation: pin-bounce 2.4s var(--ease) infinite;
}
@keyframes pin-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.map-footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; }
.map-footer-text strong { display: block; font-family: "Bricolage Grotesque", sans-serif; font-size: 17px; }
.map-footer-text span { font-size: 13.5px; color: var(--ink-faint); }
.map-open { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--gold-deep); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 60px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,248,238,0.12); }
.footer-brand .brand-footer { color: var(--cream); margin-bottom: 14px; }
.footer-brand p { color: rgba(255,248,238,0.6); font-size: 15px; max-width: 30em; margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-head { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 15px; margin-bottom: 4px; color: #fff; }
.footer-col a, .footer-hours { color: rgba(255,248,238,0.62); font-size: 14.5px; transition: color .2s ease; }
.footer-col a:hover { color: var(--amber); }
.footer-base { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; flex-wrap: wrap; }
.footer-base span { font-size: 13.5px; color: rgba(255,248,238,0.5); }
.footer-book { font-weight: 700; font-size: 14.5px; color: var(--amber); }
.footer-book:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 2px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--cream); padding: 14px 24px 22px; box-shadow: var(--shadow-md);
    border-top: 1px solid var(--line);
  }
  .nav-links.open a { font-size: 17px; padding: 12px 14px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { text-align: center; }
  .hero-sub, .hero-cta, .hero-trustline { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-media { max-width: 420px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-media { max-width: 380px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .hero { padding: 36px 0 90px; }
  .phone-link span { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gi-1 { grid-column: span 2; grid-row: span 2; }
  .gi-2, .gi-5 { grid-column: span 2; }
  .gi-3, .gi-4 { grid-column: span 1; }
  .trust-grid { grid-template-columns: 1fr; }
  .hours-inner { flex-direction: column; align-items: flex-start; padding: 28px 26px; text-align: left; }
  .hours-text { font-size: 18px; }
  .about-stats { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; align-items: flex-start; }
  .review-card blockquote { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
