/* =========================================================
   Shreeji's Kennel — Design System
   Palette derived from logo: warm cocoa brown + kennel orange
   ========================================================= */

:root {
  --ink: #2A1B10;          /* deep cocoa — headings/body */
  --carbon: #201207;       /* darkest brown — dark sections */
  --carbon-soft: #2E1C0F;  /* slightly lighter dark panel */
  --accent: #E2600C;       /* kennel orange (from logo) */
  --accent-dark: #C24F09;
  --accent-soft: #FBE2CC;
  --secondary: #7A5F4A;    /* warm taupe — secondary text */
  --surface: #FBF5EC;      /* warm cream background */
  --surface-200: #F2E6D6;
  --line: #E8D9C3;
  --white: #FFFFFF;
  --paw: #C9782E;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --max-frame: 1480px;
  --max-content: 1180px;

  --radius-card: 20px;
  --radius-card-lg: 28px;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  --section-pad: 88px;
}

@media (min-width: 1024px) {
  :root { --section-pad: 128px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

::selection { background: var(--accent); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: #ddc7ac; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.font-display { font-family: var(--font-display); }

/* ---------- Layout helpers ---------- */
.frame { max-width: var(--max-frame); margin: 0 auto; padding: 0 24px; }
.content { max-width: var(--max-content); margin: 0 auto; padding: 0 24px; }
@media (min-width: 640px) { .frame, .content { padding: 0 32px; } }
@media (min-width: 1024px) { .frame, .content { padding: 0 48px; } }

.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section-tight { padding-top: calc(var(--section-pad) * 0.6); padding-bottom: calc(var(--section-pad) * 0.6); }
.bg-surface { background: var(--surface); }
.bg-white { background: var(--white); }
.bg-carbon { background: var(--carbon); color: #fff; }
.border-y-line { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.text-white { color: #fff !important; }
.text-secondary { color: var(--secondary); }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.eyebrow.light { color: rgba(255,255,255,0.85); }
.eyebrow.light::before { background: var(--accent); }

.display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
  font-size: clamp(2.4rem, 6.4vw, 5.6rem);
}
.heading-lg {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
}
.heading-md {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; color: var(--secondary); }

/* split heading reveal */
.split-line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.split-word { display: inline-block; margin-right: 0.26em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-smooth); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { border: 1.5px solid rgba(42,27,16,0.18); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: rgba(255,255,255,0.9); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1DBE58; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: 88px;
  transition: all 0.45s var(--ease-smooth);
  border-bottom: 1px solid transparent;
  background: rgba(251,245,236,0.88);
  backdrop-filter: blur(16px);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -18px rgba(42,27,16,0.25);
}
.site-header .scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(20,12,7,0.55), rgba(20,12,7,0.15) 65%, transparent);
  opacity: 0; transition: opacity 0.45s var(--ease-smooth); pointer-events: none;
}
.site-header.over-hero .scrim { opacity: 1; }
.header-inner {
  max-width: var(--max-frame); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
@media (min-width: 640px) { .header-inner { padding: 0 32px; } }
@media (min-width: 1024px) { .header-inner { padding: 0 48px; } }

.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink); }
.site-header.over-hero .brand { color: #fff; }
.brand img { height: 46px; width: auto; }

.nav-desktop { display: none; align-items: center; gap: 34px; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  position: relative; padding: 4px 0; font-size: 15px; font-weight: 500; color: var(--ink);
  transition: color 0.3s;
}
.site-header.over-hero .nav-desktop a { color: rgba(255,255,255,0.92); }
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--accent); transition: width 0.3s var(--ease-smooth);
}
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; } }

.menu-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(42,27,16,0.15); color: var(--ink);
}
.site-header.over-hero .menu-btn { border-color: rgba(255,255,255,0.35); color: #fff; }
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: var(--carbon); color: #fff;
  transform: translateX(100%); transition: transform 0.5s var(--ease-smooth);
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; padding: 24px; }
.mobile-menu-close { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; }
.mobile-menu nav { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 0 32px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 34px; font-weight: 600; padding: 12px 0; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu-bottom { padding: 32px; display: flex; flex-direction: column; gap: 14px; }

/* ---------- Sections & cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-card-lg);
}
.rounded-lg { border-radius: var(--radius-card-lg); }
.rounded { border-radius: var(--radius-card); }

.pill {
  display: inline-flex; padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  border: 1.5px solid rgba(42,27,16,0.15); color: var(--secondary); transition: all 0.3s;
}
.pill.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.pill:hover:not(.active) { border-color: var(--ink); color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--carbon); color: rgba(255,255,255,0.85); }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: #fff; display:flex; align-items:center; gap:10px;}
.footer-col h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 600; }
.footer-col ul { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: #fff; }
.social-btn {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.18); transition: all 0.3s;
}
.social-btn:hover { border-color: var(--accent); background: var(--accent); }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.1); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Split grids (two-column content sections used across pages) ---------- */
.grid-split { grid-template-columns: 1fr 1fr; }
.grid-split-wide-left { grid-template-columns: 0.9fr 1.1fr; }
.grid-split-wide-right { grid-template-columns: 0.9fr 1.6fr; }
.grid-stats-3 { grid-template-columns: repeat(3, 1fr); }
.footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }

@media (max-width: 900px) {
  .grid-split,
  .grid-split-wide-left,
  .grid-split-wide-right { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px !important; }
}
@media (max-width: 640px) {
  .grid-stats-3 { gap: 12px !important; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Breed / Gallery cards with image fallback ---------- */
.media-box { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--surface-200), #e2c9a8); }
.media-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-smooth); }
.media-fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: linear-gradient(135deg, #f1cd9a, #d97a2e); color: #fff;
}

.breed-card { display: flex; flex-direction: column; }
.breed-card .media-box { aspect-ratio: 4/3.4; border-radius: var(--radius-card); }
.breed-card:hover .media-box img { transform: scale(1.07); }
.breed-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px);
  padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.breed-body { padding-top: 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.breed-name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; }
.breed-meta { font-size: 13px; color: var(--secondary); margin-top: 4px; }
.breed-enquire {
  display: flex; align-items: center; justify-content: center; gap: 6px; flex-shrink: 0;
  padding: 10px 16px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-dark);
  font-size: 13px; font-weight: 600; transition: all 0.3s;
}
.breed-enquire:hover { background: #25D366; color: #fff; }

/* ---------- Reveal animation base ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-mask] { position: relative; overflow: hidden; }
[data-mask] .mask-inner { position: absolute; inset: 0; }

/* ---------- Marquee ---------- */
.marquee-row { display: flex; overflow: hidden; }
.marquee-track { display: flex; flex-shrink: 0; align-items: center; animation: marquee 26s linear infinite; }
.marquee-track.reverse { animation-direction: reverse; animation-duration: 30s; }
.marquee-item {
  display: flex; align-items: center; gap: 10px; margin: 0 26px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: rgba(42,27,16,0.22);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stat { border-top: 1px solid var(--line); padding-top: 18px; }
.stat-value { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); }
.stat-label { margin-top: 6px; font-size: 14px; color: var(--secondary); }

/* ---------- Accordion (What we offer) ---------- */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; display: flex; align-items: center; gap: 20px; padding: 22px 0; text-align: left; }
.acc-num { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--secondary); }
.acc-item.open .acc-num, .acc-item:hover .acc-num { color: var(--accent); }
.acc-title { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--secondary); }
.acc-item.open .acc-title { color: var(--ink); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-smooth); padding-left: 40px; }
.acc-item.open .acc-body { max-height: 260px; }
.acc-body ul { padding-bottom: 22px; display: flex; flex-direction: column; gap: 10px; }
.acc-body li { display: flex; gap: 10px; font-size: 15px; color: var(--secondary); }
.acc-body li::before { content:""; width: 6px; height: 6px; margin-top: 8px; flex-shrink:0; background: var(--accent); transform: rotate(45deg); }

/* ---------- Why choose pillars ---------- */
.pillar { display: flex; gap: 22px; padding: 34px; border-radius: var(--radius-card-lg); background: var(--carbon-soft); transition: background 0.4s; }
.pillar:hover { background: rgba(255,255,255,0.05); }
.pillar-icon { flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(226,96,12,0.18); color: var(--accent); font-size: 1.6rem; }

/* ---------- Testimonials ---------- */
.testi-card { border-radius: var(--radius-card-lg); border: 1px solid var(--line); background: #fff; padding: 40px; }
.testi-quote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.5; }
.testi-nav-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(42,27,16,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.testi-nav-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.testi-dot { height: 4px; width: 20px; border-radius: 99px; background: rgba(42,27,16,0.15); transition: all 0.4s; }
.testi-dot.active { width: 40px; background: var(--accent); }

/* ---------- Tabs (About) ---------- */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--radius-card-lg); background: var(--carbon); text-align: center; padding: 84px 32px; }
.cta-banner .bg-img { position: absolute; inset: 0; object-fit: cover; opacity: 0.28; }

/* ---------- WhatsApp float button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(0,0,0,0.35);
  transition: transform 0.3s var(--ease-smooth);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: 0.6;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.55; } 100% { transform: scale(1.9); opacity: 0; } }

/* ---------- Page hero (non-home pages) ---------- */
.page-hero { background: var(--surface); padding: 168px 0 var(--section-pad); border-bottom: 1px solid var(--line); }
.breeds-banner { width: 100%; overflow: hidden; }
.breeds-banner img { width: 100%; height: auto; display: block; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  font-family: var(--font-sans); font-size: 15px; color: var(--ink); transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Utilities ---------- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; } .mt-10 { margin-top: 40px; } .mt-14 { margin-top: 56px; }
.max-w-2 { max-width: 640px; } .max-w-3 { max-width: 780px; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(20,12,7,0.92); display: none; align-items: center; justify-content: center; padding: 32px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 14px; }
.lightbox-close { position: absolute; top: 26px; right: 26px; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3); color: #fff; display: flex; align-items: center; justify-content: center; }

/* ---------- Hero (home) — full-bleed, edge to edge ---------- */
.hero { position: relative; padding: 88px 0 0; background: var(--surface); overflow: hidden; }
.hero-full-bleed { width: 100%; }
.hero-banner-img { width: 100%; height: auto; max-height: 78vh; object-fit: cover; display: block; }

@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 720px) {
  .cta-banner { padding: 56px 20px; }
  .pillar { flex-direction: column; padding: 26px; }
  .hero-banner-img { max-height: 46vh; }
}
@media (max-width: 480px) {
  .hero-banner-img { max-height: 38vh; }
}

/* ---------- Happy Customers ---------- */
.customer-card { text-align: center; }
.customer-card .media-box { aspect-ratio: 1/1; border-radius: 50%; }
.customer-info { margin-top: 16px; }
.customer-name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.customer-pet { font-size: 13px; color: var(--secondary); margin-top: 2px; }

/* ---------- Blog ---------- */
.blog-card { display: block; background: #fff; border-radius: var(--radius-card-lg); overflow: hidden; border: 1px solid var(--line); transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(42,27,16,0.25); }
.blog-card .media-box { aspect-ratio: 16/10; border-radius: 0; }
.blog-tag { position: absolute; top: 14px; left: 14px; background: var(--accent); color: #fff; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.blog-body { padding: 24px; }
.blog-date { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--secondary); }
.blog-read { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--accent); }

/* ---------- Decorative paw prints ---------- */
.paw-deco {
  position: absolute;
  width: 92px;
  height: auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  --paw-rot: -14deg;
  transform: rotate(var(--paw-rot));
  animation: paw-float 6.5s ease-in-out infinite;
  filter: drop-shadow(0 10px 18px rgba(42,27,16,0.10));
}
.paw-deco.light { opacity: 0.14; filter: brightness(0) invert(1); }
.paw-deco.xs { width: 44px; }
.paw-deco.sm { width: 60px; }
.paw-deco.lg { width: 130px; }
.paw-deco.spin { animation: paw-float 7.5s ease-in-out infinite, paw-spin 24s linear infinite; }
.paw-deco.d1 { animation-delay: .6s; }
.paw-deco.d2 { animation-delay: 1.4s; }

@keyframes paw-float {
  0%, 100% { transform: rotate(var(--paw-rot)) translateY(0); }
  50% { transform: rotate(var(--paw-rot)) translateY(-18px); }
}
@keyframes paw-spin {
  from { transform: rotate(var(--paw-rot)); }
  to { transform: rotate(calc(var(--paw-rot) + 360deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .paw-deco { animation: none !important; }
}
@media (max-width: 780px) {
  .paw-deco { opacity: 0.22; }
  .paw-deco.light { opacity: 0.10; }
  .paw-deco.lg { width: 84px; }
  .paw-deco.hide-mobile { display: none; }
}
@media (max-width: 480px) {
  .paw-deco.sm, .paw-deco.md { width: 38px; }
}

/* ---------- Responsive refinements ---------- */
@media (max-width: 780px) {
  :root { --section-pad: 64px; }
  .page-hero { padding: 122px 0 52px; }
  .brand { font-size: 17px; gap: 8px; }
  .brand img { height: 36px; }
  .footer-brand { font-size: 20px; }
  .footer-brand img { height: 34px; }
  .cta-banner { padding: 56px 22px; }
  .testi-card { padding: 26px; }
  .grid-stats-3 { gap: 14px !important; }
  .breed-body { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .display-xl { font-size: clamp(2rem, 9.5vw, 2.6rem); }
  .heading-lg { font-size: clamp(1.5rem, 7.5vw, 2rem); }
  .heading-md { font-size: clamp(1.2rem, 5.5vw, 1.5rem); }
  .page-hero { padding: 112px 0 44px; }
  .brand { font-size: 15px; }
  .brand img { height: 30px; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .eyebrow { font-size: 12px; letter-spacing: 0.14em; }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
  .marquee-item { font-size: 1.15rem; margin: 0 16px; }
  .acc-title { font-size: 1.05rem; }
  .acc-head { gap: 14px; }
  .acc-body { padding-left: 0; }
  .testi-quote { font-size: 1.15rem; }
  .stat-value { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .stat-label { font-size: 12px; }
  .grid-stats-3 { gap: 10px !important; }
  .pillar { padding: 22px; gap: 16px; }
  .article-body p { font-size: 15.5px; }
  .customer-name { font-size: 0.92rem; }
  .mobile-menu nav a { font-size: 26px; }
  .lightbox { padding: 16px; }
  .lightbox-close { width: 42px; height: 42px; top: 16px; right: 16px; }
}

@media (max-width: 380px) {
  .breed-body { flex-direction: column; align-items: flex-start; gap: 12px; }
  .breed-enquire { width: 100%; }
  .header-actions { gap: 10px; }
  .footer-grid { gap: 28px !important; }
}

/* ---------- Blog article page ---------- */
.article-hero-img { width: 100%; aspect-ratio: 21/9; border-radius: var(--radius-card-lg); overflow: hidden; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: 17px; line-height: 1.85; color: var(--secondary); margin-top: 22px; }
.article-body h2 { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--ink); margin-top: 48px; }
.article-body ul { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.article-body li { display: flex; gap: 12px; font-size: 16px; line-height: 1.6; color: var(--secondary); }
.article-body li::before { content:""; width: 6px; height: 6px; margin-top: 9px; flex-shrink:0; background: var(--accent); border-radius: 50%; }
.article-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--secondary); }
.article-meta .tag-pill { background: var(--accent-soft); color: var(--accent-dark); padding: 5px 14px; border-radius: 999px; font-weight: 600; }
.article-cta { margin-top: 56px; padding: 40px; border-radius: var(--radius-card-lg); background: var(--surface); text-align: center; }