/* ==========================================================================
   Pawsitive Pets - shared stylesheet (design tokens + chrome + components)
   Owner: orchestrator. Page subagents may ONLY append rules below the marker
   at the very bottom, each under a banner comment of the form  page:<slug>
   Fonts are loaded per page via a <link> to fonts.googleapis.com in <head>.
   ========================================================================== */

:root {
  --teal: #1ca0b3;
  --teal-2: #46bdcd;
  --teal-deep: #127f90;
  --teal-dark: #157f8f;
  --ink: #404040;
  --muted: #6f7275;
  --heading: #158ea2;
  --dark: #0b0b0b;
  --soft: #f4f5f5;
  --line: #e6e8e9;
  --white: #ffffff;
  --top-grad: linear-gradient(90deg, #137d8d 0%, #3bb6c6 100%);
  --bottom-grad: linear-gradient(90deg, #1795a8 0%, #57c6d4 100%);
  --font-head: "Quicksand", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-btn: "Laila", Georgia, serif;
  --btn-fill: #158cac;
  --btn-line: #46beb5;
  --r-card: 18px;
  --r-btn: 26px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.08);
  --wrap: 1200px;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--teal); color: #fff; padding: 10px 16px; z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

/* ---------- Buttons ------------------------------------------------------ */
/* Matches the original Wix buttons: 45px tall, 7px corners, Laila bold 13px */
.btn,
.btn-outline,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  min-width: 137px;
  padding: 0 18px;
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 1.3px;
  text-align: center;
  border-radius: 7px;
  background: var(--btn-fill);
  color: #fff;
  border: 2px solid var(--btn-fill);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* outline on a light background (e.g. View Gallery) */
.btn-outline {
  background: transparent; color: var(--btn-fill); border-color: var(--btn-line);
}
.btn-outline:hover { background: var(--btn-fill); border-color: var(--btn-fill); color: #fff; transform: translateY(-2px); }

/* outline on a photo / dark background (e.g. Explore Services, Call Us) */
.btn-outline-light {
  background: transparent; color: #fff; border-color: var(--btn-line);
}
.btn-outline-light:hover { background: var(--btn-line); border-color: var(--btn-line); color: #fff; transform: translateY(-2px); }

.btn-pill { border-radius: 999px; }
.btn-sm { min-height: 37px; min-width: 0; padding: 0 16px; letter-spacing: 0.65px; font-weight: 400; }

/* small round arrow (service card "read more") */
.round-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--teal); color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin: 0 auto;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.round-arrow:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }

/* ---------- Top utility bar --------------------------------------------- */
.topbar {
  background: var(--top-grad);
  color: #fff;
  font-size: 0.82rem;
  font-family: var(--font-body);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-left a, .topbar-left span { color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.topbar-left .sep { opacity: 0.5; }
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social a { display: inline-flex; }
.topbar-social img { width: 17px; height: 17px; }

/* ---------- Header / nav ------------------------------------------------ */
.site-header { position: sticky; top: 0; z-index: 500; background: #fff; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 66px; height: auto; }
.brand .brand-name {
  font-family: var(--font-head); font-weight: 700; color: var(--teal);
  font-size: 1.35rem; line-height: 1.05; letter-spacing: 0.01em;
}
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: #4a4a4a;
  padding: 6px 0; position: relative; transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--teal);
}
.nav-cta { flex-shrink: 0; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  font-size: 1.6rem; color: var(--teal); line-height: 1;
}

/* ---------- Hero -------------------------------------------------------- */
.hero {
  position: relative; color: #fff; text-align: center;
  overflow: hidden; background: var(--dark);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 900px; margin: 0 auto;
  padding: 150px 24px 190px;
}
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 0.4em; }
.hero p { color: #fff; font-size: 1.15rem; max-width: 640px; margin: 0 auto 1.6em; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-cta a { min-width: 151px; padding: 0 10px; }
/* curved bottom edge shared by photo heroes */
.hero-curve { border-bottom-left-radius: 50% 44px; border-bottom-right-radius: 50% 44px; }

.breadcrumb {
  font-family: var(--font-head); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 0.78rem; color: #fff; margin-bottom: 18px;
}
.breadcrumb a { color: #fff; text-decoration: underline; }
.breadcrumb .active { opacity: 0.85; }

/* inner hero variant (short banner pages) */
.hero-inner-short { padding: 90px 24px 120px; }

/* ---------- Sections ---------------------------------------------------- */
.section { padding: 72px 0; }
.section.soft { background: var(--soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-title { font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--heading); }
.section-title .accent { color: var(--teal-2); }
.section-sub { color: var(--muted); font-size: 1.02rem; }

/* ---------- Service cards ----------------------------------------------- */
/* Measured from the original: 343px cards, 53px gutters, 272px photo, a curved
   #fafafa panel from 218px, and a 101px icon circle straddling the photo edge.
   Cards size to their own content (Dog Boarding is taller than the rest). */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 343px);
  justify-content: center; align-items: start;
  gap: 51px 53px; margin: 0 auto;
}
.services-grid.center-2 { grid-template-columns: repeat(2, 343px); margin-top: 51px; }
.service-card {
  position: relative; text-align: center;
  display: flex; flex-direction: column;
  border-radius: 31px; overflow: hidden;
  background: linear-gradient(#fafafa 75.44%, #fff 100%);
  box-shadow: 0 1px 13px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); }
.service-card .card-img { height: 272px; }
.service-card .card-img > img { width: 100%; height: 272px; object-fit: cover; }
.service-card .card-icon {
  position: absolute; z-index: 2; top: 171px; left: 50%; transform: translateX(-50%);
  width: 101px; height: 101px; border-radius: 50%; background: var(--btn-line);
  display: flex; align-items: center; justify-content: center;
}
.service-card .card-icon img { width: 44px; height: 44px; object-fit: contain; }
.service-card .card-body {
  position: relative; z-index: 1; margin-top: -54px;
  padding: 74px 30px 28px; background: linear-gradient(#fafafa 75.44%, #fff 100%);
  border-radius: 60px 60px 0 0;
  display: flex; flex-direction: column; flex: 1;
}
.service-card h5 { font-family: var(--font-btn); font-weight: 700; font-size: 21px; line-height: 1.4; color: var(--btn-fill); margin: 0 0 11px; }
.service-card p,
.service-card .fineprint,
.service-card .price { font-family: var(--font-head); font-size: 16px; line-height: 1.4; margin: 0; }
.service-card p { color: #595959; }
.service-card .fineprint { color: #595959; font-weight: 700; margin-top: 22px; }
.service-card .price { color: var(--btn-line); font-weight: 700; margin-top: 22px; }
.service-card .card-foot { margin-top: 24px; }
.service-card .round-arrow {
  width: 44px; height: 44px; border: 2px solid var(--btn-line); background: #fff; color: var(--btn-line);
}
.service-card .round-arrow svg { width: 12px; height: 19px; fill: currentColor; margin-left: 2px; }
.service-card .round-arrow:hover { background: var(--btn-line); color: #fff; }
.section-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }

/* ---------- Split (Who We Are / Furry Friends) -------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split .split-text h2 { color: var(--heading); }
.split .split-text p { color: var(--muted); }
.split .split-media img { border-radius: var(--r-card); width: 100%; object-fit: cover; box-shadow: var(--shadow); }

/* ---------- Testimonial band ------------------------------------------- */
.testimonial-band { position: relative; background: var(--teal); color: #fff; overflow: hidden; }
.testimonial-band .tb-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.18; z-index: 0; }
.testimonial-band .wrap { position: relative; z-index: 1; padding: 62px 24px 70px; }

/* Review carousel - the original is a 980x371 Wix slideshow: 5 slides, vertical slide
   transition (1s), 20s autoplay, thin arrows outside the slide and dots underneath. */
.rv-slider { position: relative; max-width: 980px; margin: 0 auto; }
.rv-viewport { display: grid; overflow: hidden; margin: 0 -40px; padding: 0 40px; }
.rv-slide {
  grid-area: 1 / 1; margin: 0; min-height: 371px;
  display: flex; align-items: center; gap: 47px;
  transition: transform 1s ease-in-out; transform: translateY(100%); visibility: hidden;
}
.rv-slide.is-active { transform: none; visibility: visible; }
.rv-slide.is-leaving { visibility: visible; transform: translateY(-100%); }
.rv-slide.from-top { transform: translateY(-100%); }
.rv-slide.is-leaving.to-bottom { transform: translateY(100%); }
.rv-slide.no-anim { transition: none; }
.rv-photo { position: relative; flex: 0 0 178px; height: 181px; margin-left: 4px; }
.rv-photo::before {
  content: ""; position: absolute; left: -36px; top: -39px; width: 250px; height: 258px;
  background: url(orig/review-blob.svg) center / 100% 100% no-repeat;
}
.rv-photo img {
  position: relative; width: 178px; height: 181px; object-fit: cover;
  -webkit-mask: url(orig/review-mask.svg) center / 100% 100% no-repeat;
          mask: url(orig/review-mask.svg) center / 100% 100% no-repeat;
}
.rv-card {
  flex: 1; min-height: 239px; background: #fff; color: #595959;
  border-radius: 45px; box-shadow: 0 1px 13px 2px rgba(0, 0, 0, 0.26);
  padding: 41px 41px 41px 40px;
}
.rv-quote { display: block; width: 59px; height: 54px; fill: var(--btn-fill); margin-bottom: 11px; }
.rv-card blockquote { margin: 0; font-family: var(--font-head); font-size: 16px; line-height: 1.2; }
.rv-card figcaption { display: flex; align-items: center; margin-top: 19.2px; }
.rv-name { flex: 0 0 153px; font-family: var(--font-head); font-size: 13px; font-weight: 700; color: var(--btn-line); }
.rv-stars { width: 109px; height: 19px; }
.rv-arrow {
  position: absolute; top: 167px; width: 18px; height: 38px; padding: 0;
  background: none; border: 0; cursor: pointer; color: #fff;
}
.rv-arrow svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.rv-prev { left: -81px; }
.rv-next { right: -81px; }
.rv-dots { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 1px; }
.rv-dot { width: 7px; height: 7px; padding: 0; border-radius: 50%; border: 0; background: #fff; cursor: pointer; }
.rv-dot.is-active { width: 11px; height: 11px; background: transparent; border: 2px solid #fff; }

/* ---------- Serving communities / map ---------------------------------- */
.map-embed { border: 0; width: 100%; height: 420px; display: block; }
.map-note { text-align: center; color: var(--muted); }

/* ---------- Why Choose Us feature tiles -------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1000px; margin: 40px auto 0; }
.feature-tile {
  background: var(--teal); color: #fff; border-radius: 14px; padding: 30px 20px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: transform 0.3s ease;
}
.feature-tile:hover { transform: translateY(-5px); }
.feature-tile img { width: 62px; height: 62px; }
.feature-tile h6 { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; margin: 0; line-height: 1.3; }

/* ---------- Furry friends band ----------------------------------------- */
.furry-band { position: relative; overflow: hidden; min-height: 480px; display: flex; align-items: stretch; }
.furry-band .fb-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.furry-band .fb-panel {
  position: relative; z-index: 1; background: var(--teal); color: #fff;
  max-width: 560px; margin: 0; padding: 66px 60px; display: flex; flex-direction: column; justify-content: center;
}
.furry-band .fb-panel h2 { color: #fff; }
.furry-band .fb-panel p { color: rgba(255, 255, 255, 0.92); }
.furry-band .btn-outline-light { border-color: #fff; letter-spacing: 0.65px; align-self: flex-start; min-width: 155px; }
.furry-band .btn-outline-light:hover { background: #fff; border-color: #fff; color: var(--btn-fill); }

/* ---------- Blog on home / list ---------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card { background: #fff; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-card .pc-img { overflow: hidden; }
.post-card .pc-img img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .pc-img img { transform: scale(1.05); }
.post-card .pc-body { padding: 20px 22px 26px; }
.post-card .pc-body h3 { font-size: 1.08rem; margin: 0 0 10px; }
.post-card .pc-body h3 a { color: var(--heading); }
.post-card .pc-body p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.post-meta { font-size: 0.8rem; color: var(--muted); margin-top: 14px; display: flex; gap: 12px; flex-wrap: wrap; }
.post-meta a { color: var(--teal); }

/* full blog list layout - horizontal cards (image left, text right) */
.blog-list { display: flex; flex-direction: column; gap: 34px; max-width: 940px; margin: 0 auto; }
.blog-list .bl-item { display: grid; grid-template-columns: 42% 1fr; background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.blog-list .bl-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-list .bl-item > img,
.blog-list .bl-item .bl-placeholder { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }
.blog-list .bl-body { padding: 28px 34px; display: flex; flex-direction: column; justify-content: center; }
.blog-list .bl-body h2 { font-size: 1.35rem; }
.blog-list .bl-body h2 a { color: var(--heading); }
.blog-list .bl-body p { color: var(--muted); font-size: 0.95rem; }
.blog-list .post-meta { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.blog-crumb { max-width: 940px; margin: 0 auto 6px; font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }

/* ---------- Gallery grid ----------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid .g-item { overflow: hidden; border-radius: 12px; aspect-ratio: 1 / 1; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.08); }

/* ---------- Home pet gallery slider ------------------------------------- */
/* The original is a Wix Pro Gallery slider: 461px square tiles, 31px gaps, 31px corners,
   1731px wide on a 1905px page, scrolling continuously at 200px/s and looping. */
.pet-slider {
  --pg-size: clamp(240px, 24.2vw, 461px);
  --pg-gap: clamp(16px, 1.63vw, 31px);
  position: relative; width: calc(100% - 2 * clamp(24px, 4.57vw, 87px)); max-width: 1731px; margin: 0 auto;
}
.pg-viewport { overflow: hidden; }
.pg-track { display: flex; gap: var(--pg-gap); width: max-content; will-change: transform; }
.pg-item { flex: 0 0 var(--pg-size); height: var(--pg-size); border-radius: 31px; overflow: hidden; }
.pg-item img { width: 100%; height: 100%; object-fit: cover; }
.pg-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 18px; height: 38px; padding: 0; background: none; border: 0; cursor: pointer;
  color: rgba(255, 255, 255, 0.9); filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.45));
}
.pg-arrow svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.pg-prev { left: 20px; }
.pg-next { right: 20px; }

/* ---------- Dark CTA band ---------------------------------------------- */
.cta-band { position: relative; background: var(--dark); color: #fff; text-align: center; overflow: hidden; }
.cta-band .cta-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; z-index: 0; }
.cta-band .wrap { position: relative; z-index: 1; padding: 80px 24px; max-width: 780px; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.cta-band p { color: rgba(255, 255, 255, 0.9); }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Contact page ----------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 30px; }
.contact-card .ci-ico { color: var(--teal); font-size: 1.7rem; margin-bottom: 10px; }
.contact-card h4 { color: var(--heading); font-size: 1.1rem; margin: 0 0 8px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 0.95rem; }
.contact-card .socials { display: flex; gap: 10px; }
.contact-card .socials img { width: 26px; height: 26px; }
.contact-right h2 { color: var(--heading); }
.contact-right p { color: var(--muted); }

/* ---------- Footer ----------------------------------------------------- */
.site-footer { background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 36px; padding: 60px 0 50px; }
.footer-col h4 { color: var(--heading); font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 18px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand img { width: 58px; height: auto; }
.footer-brand .brand-name { font-family: var(--font-head); font-weight: 700; color: var(--teal); font-size: 1.2rem; line-height: 1.05; }
.newsletter { display: flex; flex-direction: column; gap: 10px; max-width: 260px; }
.newsletter input {
  font-family: var(--font-body); font-size: 0.9rem; padding: 10px 14px;
  border: 1px solid var(--line); border-radius: 6px; background: #fff; color: var(--ink);
}
.newsletter input:focus { outline: 2px solid var(--teal); border-color: var(--teal); }
.newsletter button { align-self: flex-start; }
.footer-facts { color: var(--muted); font-size: 0.88rem; line-height: 1.9; }
.footer-facts strong { color: var(--ink); }
.footer-links { list-style: none; margin: 0; padding: 0; line-height: 2.1; }
.footer-links a { color: var(--muted); font-size: 0.92rem; }
.footer-links a:hover { color: var(--teal); }
.footer-contact { color: var(--muted); font-size: 0.9rem; line-height: 1.8; }
.footer-contact .fc-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact .fc-row .fc-ico { color: var(--teal); flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social img { width: 28px; height: 28px; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.footer-bottom { background: var(--bottom-grad); color: #fff; text-align: center; padding: 16px; font-size: 0.85rem; }
.footer-bottom strong { font-weight: 700; }

/* ---------- Motion ----------------------------------------------------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatIn { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes revealIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: none; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-32px); } to { opacity: 1; transform: none; } }

/* pure on-load entrances: always run, so the element always ends visible */
.anim-fade { animation: fadeIn 0.9s ease both; }
.anim-float { animation: floatIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
.anim-reveal { animation: revealIn 0.8s ease both; }
.anim-left { animation: slideInLeft 0.8s ease both; }
.d1 { animation-delay: 0.12s; }
.d2 { animation-delay: 0.24s; }
.d3 { animation-delay: 0.36s; }
.d4 { animation-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- Responsive ------------------------------------------------- */
@media (max-width: 960px) {
  .rv-slider { padding: 0 50px; }
  .rv-prev { left: 0; }
  .rv-next { right: 0; }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .services-grid.center-2 { grid-template-columns: repeat(2, minmax(0, 343px)); gap: 40px 30px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .furry-band .fb-panel { max-width: none; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 10px 0; box-shadow: var(--shadow-sm); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 12px 0; }
  .nav-toggle { display: inline-block; }
  .nav-cta { display: none; }
  .hero-inner { padding: 100px 20px 130px; }
  .post-grid, .contact-cards { grid-template-columns: 1fr; }
  .services-grid, .services-grid.center-2 { grid-template-columns: minmax(0, 343px); margin-top: 40px; }
  .services-grid:not(.center-2) { margin-top: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .rv-slider { padding: 0 26px; }
  .rv-slide { flex-direction: column; gap: 40px; padding: 40px 0 10px; }
  .rv-slide { justify-content: flex-start; }
  .rv-card { flex: none; align-self: stretch; min-height: 0; border-radius: 30px; padding: 30px 22px; }
  .rv-card figcaption { flex-wrap: wrap; gap: 8px 16px; }
  .rv-name { flex: 0 1 auto; }
  .rv-arrow { top: 120px; }
  .rv-prev { left: 0; }
  .rv-next { right: 0; }
  .topbar-left { gap: 12px; font-size: 0.75rem; }
  .blog-list .bl-item { grid-template-columns: 1fr; }
  .blog-list .bl-item > img,
  .blog-list .bl-item .bl-placeholder { min-height: 220px; height: 220px; }
}

/* ==========================================================================
   PAGE-SCOPED RULES BELOW  -  subagents append under a  page:<slug>  banner
   ========================================================================== */
