/* ═══════════════════════════════════════════════════════════════════
   Golden Ears Spaniels — Main Stylesheet
   Font: Poppins (Google Fonts)
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────────── */
:root {
  --brown-dark:    #3E2F23;
  --brown:         #5A4634;
  --brown-mid:     #7a5c42;
  --gold:          #C9A86A;
  --gold-dark:     #b08d55;
  --cream:         #F7F2E9;
  --cream-light:   #fdf9f3;
  --cream-border:  #E8DCC3;
  --text-dark:     #2B2B2B;
  --text-mid:      #5a5a5a;
  --text-light:    #8a7a6a;
  --white:         #ffffff;
  --shadow-sm:     0 2px 8px rgba(90,70,52,.10);
  --shadow-md:     0 4px 20px rgba(90,70,52,.15);
  --shadow-lg:     0 8px 40px rgba(90,70,52,.20);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  /* Header heights */
  --topbar-h:      38px;
  --nav-h:         68px;
  --header-h:      calc(var(--topbar-h) + var(--nav-h));
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: var(--gold-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--brown); }
ul  { list-style: none; }

/* ─── Layout ────────────────────────────────────────────────────── */
.container  { width: min(1200px, 92%); margin-inline: auto; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }

/* Responsive 2-col split — image always second in DOM, displays left on desktop */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
/* When text is second, flip visually on desktop */
.split-2-reverse { direction: rtl; }
.split-2-reverse > * { direction: ltr; }

/* Generic named grids */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ─── Typography ────────────────────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  display: block;
}
h1,h2,h3,h4,h5 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--brown-dark);
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(.95rem, 2.2vw, 1.05rem); }
.lead {
  font-size: clamp(.97rem, 2vw, 1.12rem);
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─── Badge ─────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.badge-brown   { background: var(--brown); }
.badge-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--brown); }

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary   { background: var(--gold);       color: var(--white); border-color: var(--gold); }
.btn-secondary { background: transparent;        color: var(--brown); border-color: var(--brown); }
.btn-dark      { background: var(--brown);       color: var(--white); border-color: var(--brown); }
.btn-ghost     { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.35); }

.btn-primary:hover   { background: var(--gold-dark);  border-color: var(--gold-dark);  color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,106,.4); }
.btn-secondary:hover { background: var(--brown);       border-color: var(--brown);       color: var(--white); transform: translateY(-2px); }
.btn-dark:hover      { background: var(--brown-dark);  border-color: var(--brown-dark);  color: var(--white); transform: translateY(-2px); }
.btn-ghost:hover     { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.btn-sm  { padding: 8px 20px;  font-size: .8rem;  }
.btn-lg  { padding: 14px 34px; font-size: .97rem; }
.btn-block { width: 100%; }

/* ═══════════════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--topbar-h);
  background: var(--brown-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-items {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .2px;
}
.topbar-item:hover { color: var(--gold); }
.topbar-icon {
  width: 13px; height: 13px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.topbar-divider {
  color: rgba(255,255,255,.2);
  font-size: .75rem;
}
.topbar-right .topbar-item { cursor: default; }
.topbar-right .topbar-item:hover { color: rgba(255,255,255,.78); }

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(253,249,243,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 24px; height: 24px; fill: var(--white); }
.nav-logo-name    { font-size: .97rem; font-weight: 700; color: var(--brown-dark); display: block; line-height: 1.1; }
.nav-logo-tagline { font-size: .65rem; font-weight: 400; color: var(--text-light); display: block; letter-spacing: .3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brown); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .3s;
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream-light);
  padding: 10px 0 18px;
  gap: 2px;
  border-top: 1px solid var(--cream-border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 11px 20px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { background: var(--cream); color: var(--brown); }
.mobile-cta {
  margin: 10px 20px 0 !important;
  border-radius: 50px !important;
  padding: 12px 20px !important;
  justify-content: center;
  display: flex !important;
}
.mobile-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 10px 12px 4px;
  padding: 10px 8px 6px;
  border-top: 1px solid var(--cream-border);
}
.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 8px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.mobile-contact-item:hover { background: var(--cream); color: var(--brown); }
.mobile-contact-item svg {
  width: 15px; height: 15px;
  stroke: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  padding-top: calc(var(--header-h) + 52px);
  padding-bottom: 72px;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 60%, #ede3d0 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(201,168,106,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.hero h1          { margin-bottom: 16px; }
.hero h1 em       { font-style: normal; color: var(--gold-dark); }
.hero .lead       { margin-bottom: 30px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats      { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brown);
  line-height: 1;
}
.hero-stat span { font-size: .72rem; color: var(--text-light); font-weight: 500; }

/* Visual */
.hero-visual {
  position: relative;
  padding-bottom: 24px; /* room for badge */
}
.hero-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-badge-floating {
  position: absolute;
  bottom: 0; left: -16px;    /* stays within hero overflow:hidden boundary */
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 13px 17px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 220px;
  border: 1px solid var(--cream-border);
}
.hero-badge-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hero-badge-text strong { display: block; font-size: .83rem; font-weight: 700; color: var(--brown); }
.hero-badge-text span   { font-size: .7rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════════════
   WHY / FEATURE CARDS
   ═══════════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card-icon {
  width: 48px; height: 48px;
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-card-icon svg { width: 22px; height: 22px; stroke: var(--brown); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.why-card h4    { margin-bottom: 8px; color: var(--brown); font-size: .98rem; }
.why-card p     { font-size: .86rem; color: var(--text-mid); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════════
   PUPPY CARDS
   ═══════════════════════════════════════════════════════════════════ */
.puppies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,290px),1fr));
  gap: 22px;
  margin-top: 32px;
}
/* Force 4-column row (homepage featured section) */
.puppies-grid-4 {
  grid-template-columns: repeat(4,1fr);
}
.puppy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.puppy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.puppy-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.puppy-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.puppy-card:hover .puppy-card-img-wrap img { transform: scale(1.06); }
.puppy-card-status { position: absolute; top: 12px; left: 12px; }
.puppy-card-gender {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.92);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px; font-weight: 600; color: var(--brown);
}
.puppy-card-body {
  padding: 18px 18px 14px;
  flex: 1; display: flex; flex-direction: column;
}
.puppy-card-name  { font-size: 1.15rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 3px; }
.puppy-card-color { font-size: .78rem; color: var(--text-light); margin-bottom: 10px; font-weight: 500; }
.puppy-card-desc  { font-size: .85rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 12px; }
.puppy-card-meta  { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 12px; }
.puppy-meta-tag {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: .73rem; font-weight: 500; color: var(--brown);
}
.puppy-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--cream-border);
  gap: 8px;
}
.puppy-price      { font-size: 1.25rem; font-weight: 800; color: var(--brown); }
.puppy-price-note { font-size: .67rem; color: var(--text-light); font-weight: 400; display: block; }

/* Gender section header */
.gender-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 18px;
}
.gender-divider h3 { white-space: nowrap; color: var(--brown); font-size: 1.2rem; }
.gender-divider::after { content: ''; flex: 1; height: 1px; background: var(--cream-border); }

/* ═══════════════════════════════════════════════════════════════════
   PUPPY DETAIL PAGE
   ═══════════════════════════════════════════════════════════════════ */
.detail-hero { padding-top: calc(var(--header-h) + 36px); padding-bottom: 52px; }
.detail-grid {
  display: grid;
  grid-template-columns: 54% 1fr;
  gap: 44px;
  align-items: start;
}
.detail-img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover;
}
.detail-badges      { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.detail-name        { font-size: clamp(1.8rem,4vw,2.5rem); font-weight: 800; color: var(--brown-dark); margin-bottom: 5px; }
.detail-color       { font-size: .97rem; color: var(--text-mid); margin-bottom: 18px; }
.detail-price       { font-size: 1.9rem; font-weight: 800; color: var(--brown); margin-bottom: 20px; }
.detail-desc        { font-size: .95rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 20px; }
.detail-health      { background: var(--cream); border-radius: var(--radius-md); padding: 18px 20px; margin-bottom: 20px; }
.detail-health h4   { font-size: .92rem; margin-bottom: 10px; color: var(--brown); }
.detail-health ul   { display: flex; flex-direction: column; gap: 7px; }
.detail-health li   { display: flex; align-items: center; gap: 9px; font-size: .87rem; color: var(--text-mid); }
.detail-health li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--gold); color: var(--white);
  border-radius: 50%; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.detail-actions { display: flex; flex-direction: column; gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════
   DELIVERY SECTION
   ═══════════════════════════════════════════════════════════════════ */
.delivery-section { background: var(--brown-dark); color: var(--white); }
.delivery-section .section-label { color: var(--gold); }
.delivery-section h2  { color: var(--white); }
.delivery-section .lead { color: rgba(255,255,255,.7); }

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 40px;
}
.delivery-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: background .25s;
}
.delivery-card:hover     { background: rgba(255,255,255,.14); }
.delivery-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.delivery-card-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.delivery-card-price     { font-size: 1.35rem; font-weight: 800; color: var(--gold); margin-bottom: 5px; }
.delivery-card h4        { font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.delivery-card p         { font-size: .8rem;  color: rgba(255,255,255,.58); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
  transition: transform .25s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.stars         { display: flex; gap: 3px; margin-bottom: 12px; }
.stars span    { color: var(--gold); font-size: 1rem; }
.testimonial-text   { font-size: .87rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 38px; height: 38px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; border: 2px solid var(--cream-border); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .87rem; color: var(--brown); }
.testimonial-loc  { font-size: .73rem; color: var(--text-light); }

/* ═══════════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--brown), var(--brown-dark));
  text-align: center;
  padding: 68px 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.72); font-size: 1rem; margin-bottom: 30px; max-width: 520px; margin-inline: auto; }
.cta-actions   { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════
   PAGE HEADER (interior pages) — dark rich style
   ═══════════════════════════════════════════════════════════════════ */
.page-header {
  padding: calc(var(--header-h) + 56px) 0 68px;
  background: linear-gradient(135deg, #211710 0%, var(--brown-dark) 55%, #4a3020 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -90px; right: -90px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(201,168,106,.13) 0%, transparent 68%);
  pointer-events: none;
}
.page-header .section-label  { color: var(--gold); margin-bottom: 10px; }
.page-header h1               { color: var(--white); margin-bottom: 14px; }
.page-header .lead            { color: rgba(255,255,255,.68); max-width: 580px; margin-top: 0; }
.page-header .breadcrumb a            { color: rgba(255,255,255,.52); }
.page-header .breadcrumb a:hover      { color: var(--gold); }
.page-header .breadcrumb-sep,
.page-header .breadcrumb > span:last-child { color: rgba(255,255,255,.32); }

/* ── Hero tag pills (blog) ── */
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.17);
  color: rgba(255,255,255,.78);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .76rem; font-weight: 500; letter-spacing: .2px;
}

/* ── Page hero stats row (locations interior page) ── */
.page-stats { display: flex; align-items: center; flex-wrap: wrap; margin-top: 40px; gap: 0; }
.page-stat { text-align: left; padding: 0 36px; border-left: 1px solid rgba(255,255,255,.14); }
.page-stat:first-child { padding-left: 0; border-left: none; }
.page-stat-num   { display: block; font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.page-stat-label { display: block; font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; margin-top: 5px; }

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.breadcrumb a   { color: var(--gold-dark); }
.breadcrumb-sep { color: var(--cream-border); }

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════ */
.about-hero {
  padding: calc(var(--header-h) + 56px) 0 68px;
  background: linear-gradient(135deg, #211710 0%, var(--brown-dark) 55%, #4a3020 100%);
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute; top: -90px; right: -90px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(201,168,106,.13) 0%, transparent 68%);
  pointer-events: none;
}
.about-hero h1               { color: var(--white); }
.about-hero .lead            { color: rgba(255,255,255,.68); }
.about-hero .breadcrumb a    { color: rgba(255,255,255,.52); }
.about-hero .breadcrumb a:hover { color: var(--gold); }
.about-hero .breadcrumb-sep,
.about-hero .breadcrumb > span:last-child { color: rgba(255,255,255,.32); }

/* two-col layout for "Our Story" */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-intro-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}
.value-item { display: flex; gap: 12px; align-items: flex-start; }
.value-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--cream-border);
}
.value-icon svg { width: 18px; height: 18px; stroke: var(--brown); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.value-text strong { display: block; font-size: .88rem; font-weight: 600; color: var(--brown); margin-bottom: 2px; }
.value-text span   { font-size: .78rem; color: var(--text-mid); line-height: 1.6; }

.credentials-section { background: var(--cream); }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 34px;
}
.credential-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
}
.credential-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.credential-icon svg { width: 24px; height: 24px; stroke: var(--brown); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.credential-card h4 { color: var(--brown); margin-bottom: 7px; font-size: .97rem; }
.credential-card p  { font-size: .84rem; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════ */
.contact-hero {
  padding: calc(var(--header-h) + 56px) 0 68px;
  background: linear-gradient(135deg, #211710 0%, var(--brown-dark) 55%, #4a3020 100%);
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; top: -90px; right: -90px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(201,168,106,.13) 0%, transparent 68%);
  pointer-events: none;
}
.contact-hero h1               { color: var(--white); }
.contact-hero .lead            { color: rgba(255,255,255,.68); }
.contact-hero .breadcrumb a    { color: rgba(255,255,255,.52); }
.contact-hero .breadcrumb a:hover { color: var(--gold); }
.contact-hero .breadcrumb-sep,
.contact-hero .breadcrumb > span:last-child { color: rgba(255,255,255,.32); }
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 38px 42px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-border);
}
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group   { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .81rem; font-weight: 600;
  color: var(--brown); margin-bottom: 6px;
}
.form-group label .req { color: var(--gold-dark); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 11px 13px;
  font-family: 'Poppins', sans-serif;
  font-size: .87rem; color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,106,.18); background: var(--white); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A4634' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 34px; cursor: pointer;
}
.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; padding: 14px; font-size: .95rem; }
.alert { border-radius: var(--radius-sm); padding: 12px 16px; font-size: .87rem; margin-bottom: 18px; font-weight: 500; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error   { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; }

.contact-sidebar { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
}
.contact-info-card h4 { font-size: .97rem; color: var(--brown); margin-bottom: 14px; }
.contact-info-item { display: flex; gap: 10px; margin-bottom: 12px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 34px; height: 34px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--cream-border);
}
.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--brown); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-text strong { display: block; font-size: .78rem; font-weight: 600; color: var(--brown); margin-bottom: 2px; }
.contact-info-text span   { font-size: .82rem; color: var(--text-mid); }

/* ── How It Works (homepage steps) ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 44px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px; left: 13%; right: 13%;
  height: 2px;
  background: linear-gradient(90deg, var(--cream-border), var(--gold), var(--cream-border));
  pointer-events: none;
}
.step-card { text-align: center; }
.step-num {
  width: 54px; height: 54px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700;
  font-family: 'Quicksand', sans-serif;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(201,168,106,.38);
  position: relative;
}
.step-card h4 { font-size: .97rem; color: var(--brown); margin-bottom: 7px; }
.step-card p  { font-size: .83rem; color: var(--text-mid); line-height: 1.72; }

/* ── Urgency badge on puppy cards ── */
.urgency-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff8e1; color: #8a6200;
  border: 1px solid #f0c040;
  border-radius: 50px; padding: 2px 9px;
  font-size: .68rem; font-weight: 600;
  margin-top: 6px; width: fit-content;
}

/* ── WhatsApp sticky button ── */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 998;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,.6); }
.whatsapp-float svg  { width: 28px; height: 28px; fill: #fff; }

/* ── FAQ accordion ── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 52px;
  margin-top: 40px;
  align-items: start;
}
.faq-col { display: flex; flex-direction: column; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; width: 100%;
  background: none; border: none; text-align: left;
  font-weight: 600; font-size: .95rem;
  color: var(--brown-dark); gap: 14px;
  user-select: none; font-family: inherit;
}
.faq-question:hover { color: var(--gold-dark); background: var(--cream-light); }
.faq-chevron {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: var(--text-light); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s, stroke .25s;
}
.faq-item.open .faq-chevron  { transform: rotate(180deg); stroke: var(--gold); }
.faq-item.open .faq-question { color: var(--gold-dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 22px 0; font-size: .88rem; color: var(--text-mid); line-height: 1.82; }
.faq-item.open .faq-answer { max-height: 600px; }

/* FAQ page – sidebar layout */
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 44px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex; flex-direction: column; gap: 16px;
}
.faq-sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
}
.faq-sidebar-label {
  font-size: .67rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-light); margin-bottom: 14px;
}
.faq-nav-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: var(--radius-md);
  text-decoration: none; color: var(--text-mid);
  font-size: .84rem; font-weight: 500;
  transition: all .2s; margin-bottom: 2px;
}
.faq-nav-link:hover { background: var(--cream); color: var(--brown); }
.faq-nav-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; stroke-linecap: round; stroke-linejoin: round; }
.faq-contact-card {
  background: linear-gradient(145deg, #211710, #4a3020);
  border-radius: var(--radius-lg); padding: 22px; text-align: center;
}
.faq-contact-title { font-size: .92rem; font-weight: 700; color: var(--white); margin-bottom: 6px; font-family: 'Quicksand', sans-serif; }
.faq-contact-desc { font-size: .77rem; color: rgba(255,255,255,.58); margin-bottom: 16px; line-height: 1.5; }

/* FAQ sections */
.faq-main { }
.faq-section { margin-bottom: 52px; }
.faq-section-head {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 20px; padding-bottom: 18px;
  border-bottom: 2px solid rgba(201,168,106,.22);
}
.faq-section-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #f5eedc, #ede2c4);
  border: 1px solid rgba(201,168,106,.3);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(201,168,106,.15);
}
.faq-section-icon svg { width: 22px; height: 22px; stroke: var(--gold-dark); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.faq-section-head h2 { font-size: 1.18rem; color: var(--brown-dark); margin-bottom: 4px; line-height: 1.3; }
.faq-section-head p  { font-size: .80rem; color: var(--text-light); }

/* List & items */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item.open {
  border-color: rgba(201,168,106,.65);
  box-shadow: inset 3px 0 0 var(--gold), 0 4px 20px rgba(201,168,106,.13);
}
.faq-item.open .faq-answer-inner { padding: 4px 22px 20px; }
.faq-answer-inner ul { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.faq-answer-inner a { color: var(--gold-dark); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
  margin-top: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover  { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img    { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body  { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta       { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-category {
  background: var(--cream); border: 1px solid var(--cream-border);
  border-radius: 50px; padding: 2px 10px;
  font-size: .7rem; font-weight: 600; color: var(--brown);
  text-transform: uppercase; letter-spacing: .5px;
}
.blog-date     { font-size: .74rem; color: var(--text-light); }
.blog-card h3  { font-size: 1rem; line-height: 1.4; color: var(--brown-dark); margin-bottom: 8px; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-excerpt  { font-size: .84rem; color: var(--text-mid); line-height: 1.68; flex: 1; margin-bottom: 16px; }
.blog-read-more { font-size: .82rem; font-weight: 600; color: var(--gold-dark); display: flex; align-items: center; gap: 5px; margin-top: auto; }
.blog-read-more:hover { color: var(--brown); }

/* Featured post (first article, full-width) */
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 30px;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-border);
}
.featured-post-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}
.featured-post-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.featured-post:hover .featured-post-img img { transform: scale(1.04); }
.featured-post-body {
  padding: 40px 40px 40px 0;
}
.featured-post-body h2 {
  font-size: 1.7rem; line-height: 1.3;
  color: var(--brown-dark); margin: 14px 0 14px;
}
.featured-post-body h2 a { color: inherit; }
.featured-post-body h2 a:hover { color: var(--gold-dark); }
.featured-post-body .blog-excerpt { font-size: .93rem; line-height: 1.8; margin-bottom: 24px; }
.featured-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--gold-dark); margin-bottom: 6px;
}

/* Blog post */
.blog-post-hero {
  padding: calc(var(--header-h) + 52px) 0 52px;
  background: linear-gradient(135deg, #211710 0%, var(--brown-dark) 55%, #4a3020 100%);
  position: relative; overflow: hidden;
}
.blog-post-hero::before {
  content: '';
  position: absolute; top: -90px; right: -90px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(201,168,106,.13) 0%, transparent 68%);
  pointer-events: none;
}
.blog-post-hero h1               { color: var(--white); margin: 14px 0 0; max-width: 820px; }
.blog-post-hero .breadcrumb a    { color: rgba(255,255,255,.52); }
.blog-post-hero .breadcrumb a:hover { color: var(--gold); }
.blog-post-hero .breadcrumb-sep,
.blog-post-hero .breadcrumb > span:last-child { color: rgba(255,255,255,.32); }
.blog-post-hero .blog-date       { color: rgba(255,255,255,.55); }
.blog-post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.blog-post-body { max-width: 760px; margin: 0 auto; padding: 52px 0; }
.blog-post-body img    { border-radius: var(--radius-lg); margin: 26px 0; box-shadow: var(--shadow-md); }
.blog-post-body h2     { font-size: 1.45rem; margin: 32px 0 12px; }
.blog-post-body h3     { font-size: 1.18rem; margin: 26px 0 10px; }
.blog-post-body p      { font-size: .95rem; line-height: 1.82; color: var(--text-mid); margin-bottom: 16px; }
.blog-post-body ul,
.blog-post-body ol     { padding-left: 20px; margin-bottom: 16px; }
.blog-post-body ul     { list-style: disc; }
.blog-post-body ol     { list-style: decimal; }
.blog-post-body li     { font-size: .93rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 5px; }
.blog-post-body strong { color: var(--brown); font-weight: 600; }
.blog-tip {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   LOCATIONS
   ═══════════════════════════════════════════════════════════════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 40px;
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.location-icon   { font-size: 1.9rem; margin-bottom: 10px; }
.location-card h3 { font-size: 1.1rem; color: var(--brown); margin-bottom: 6px; }
.location-card p  { font-size: .84rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 14px; }

/* ── City photo cards (locations page) ── */
.city-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.city-photo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}
.city-photo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.city-photo-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.city-photo-card:hover .city-photo-card-bg { transform: scale(1.06); }
.city-photo-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,12,5,.92) 0%, rgba(20,12,5,.55) 55%, rgba(20,12,5,.1) 100%);
}
.city-photo-card-body { position: relative; z-index: 2; padding: 22px 20px 20px; }
.city-photo-card-tag {
  display: inline-block;
  background: var(--gold); color: var(--white);
  font-size: .65rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 9px; letter-spacing: .5px; text-transform: uppercase;
}
.city-photo-card-city {
  font-size: 1.3rem; font-weight: 700;
  color: var(--white); font-family: 'Quicksand', sans-serif;
  line-height: 1.2; margin-bottom: 7px;
}
.city-photo-card-desc {
  font-size: .78rem; color: rgba(255,255,255,.60);
  line-height: 1.55; margin-bottom: 16px;
}
.city-photo-card-cta {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--gold); color: var(--white);
  padding: 8px 18px; border-radius: 50px;
  font-size: .77rem; font-weight: 700;
  transition: background .2s;
}
.city-photo-card:hover .city-photo-card-cta { background: var(--gold-dark); }

.location-hero {
  padding: calc(var(--header-h) + 52px) 0 60px;
  background: linear-gradient(135deg, #211710 0%, var(--brown-dark) 55%, #4a3020 100%);
  position: relative; overflow: hidden;
}
.location-hero::before {
  content: '';
  position: absolute; top: -90px; right: -90px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(201,168,106,.13) 0%, transparent 68%);
  pointer-events: none;
}
.location-hero h1               { color: var(--white); margin-top: 12px; }
.location-hero .lead            { color: rgba(255,255,255,.68); }
.location-hero .breadcrumb a    { color: rgba(255,255,255,.52); }
.location-hero .breadcrumb a:hover { color: var(--gold); }
.location-hero .breadcrumb-sep,
.location-hero .breadcrumb > span:last-child { color: rgba(255,255,255,.32); }
.location-hero .badge           { background: rgba(201,168,106,.22); color: var(--gold); border: 1px solid rgba(201,168,106,.3); }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.7);
  padding: 56px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-icon {
  width: 32px; height: 32px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 20px; height: 20px; fill: var(--white); }
.footer-logo-name { font-size: .97rem; font-weight: 700; color: var(--white); }
.footer-brand p   { font-size: .83rem; line-height: 1.75; color: rgba(255,255,255,.52); margin-bottom: 16px; }
.footer-contact-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: rgba(255,255,255,.52); margin-bottom: 6px; }
.footer h5 { font-size: .88rem; font-weight: 600; color: var(--white); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.52); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .74rem;
  color: rgba(255,255,255,.36);
  flex-wrap: wrap;
  gap: 8px;
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile-first cascade
   ════════════════════════════════════════════════════════════════════ */

/* ── ≤ 1100px : Tablet landscape ─────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-inner        { grid-template-columns: 1fr; gap: 32px; }
  .hero-badge-floating { position: static; margin-top: 16px; display: inline-flex; }
  .hero-visual       { padding-bottom: 0; }

  .about-intro-grid  { grid-template-columns: 1fr; gap: 36px; }
  .detail-grid       { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .split-2           { grid-template-columns: 1fr; gap: 32px; }
  .split-2-reverse   { direction: ltr; } /* cancel rtl trick on mobile */

  .delivery-grid     { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid         { grid-template-columns: repeat(2,1fr); }
  .locations-grid    { grid-template-columns: repeat(2,1fr); }
  .city-photo-grid   { grid-template-columns: repeat(2,1fr); }
  .footer-grid       { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .puppies-grid-4    { grid-template-columns: repeat(2,1fr); }
  .steps-grid        { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .faq-grid          { grid-template-columns: 1fr; }
  .faq-layout        { grid-template-columns: 1fr; }
  .faq-sidebar       { position: static; flex-direction: row; }
  .faq-sidebar-card, .faq-contact-card { flex: 1; min-width: 0; }
}

/* ── ≤ 768px : Tablet portrait ───────────────────────────────────── */
@media (max-width: 768px) {
  :root { --topbar-h: 30px; --nav-h: 62px; }

  /* Topbar — show slim contact strip on mobile */
  .topbar-right    { display: none; }
  .topbar-divider  { display: none; }
  .topbar-items    { width: 100%; justify-content: center; gap: 22px; }
  .topbar-item     { font-size: .72rem; }
  .topbar-icon     { width: 11px; height: 11px; }

  .section { padding: 52px 0; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle          { display: flex; }

  /* Hero */
  .hero { padding-bottom: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats   { gap: 18px; }

  /* Page hero */
  .featured-post          { grid-template-columns: 1fr; }
  .featured-post-img      { min-height: 240px; }
  .featured-post-body     { padding: 28px 24px 32px 24px; }
  .page-stats             { gap: 14px; }
  .page-stat              { padding: 0 20px; border-left: 1px solid rgba(255,255,255,.12); }
  .page-stat:first-child  { padding-left: 0; }

  /* Grids */
  .why-grid          { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .delivery-grid     { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .credentials-grid  { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .blog-grid         { grid-template-columns: 1fr; }
  .locations-grid    { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .grid-2, .grid-3   { grid-template-columns: 1fr; gap: 16px; }
  .values-grid       { grid-template-columns: 1fr; }

  /* Forms */
  .form-card { padding: 24px 18px; }
  .form-row  { grid-template-columns: 1fr; gap: 0; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-banner       { padding: 52px 0; }
  .cta-banner h2    { font-size: clamp(1.4rem,5vw,2rem); }
  .cta-actions      { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }

  /* Page header + section heroes */
  .page-header    { padding: calc(var(--header-h) + 32px) 0 44px; }
  .contact-hero   { padding: calc(var(--header-h) + 32px) 0 44px; }
  .about-hero     { padding: calc(var(--header-h) + 32px) 0 44px; }
  .location-hero  { padding: calc(var(--header-h) + 30px) 0 44px; }
  .blog-post-hero { padding: calc(var(--header-h) + 28px) 0 36px; }
  .blog-post-body { padding: 36px 0; }
  .page-stat-num  { font-size: 2rem; }
}

/* ── ≤ 480px : Mobile ────────────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --nav-h: 58px; }
  .section   { padding: 40px 0; }
  .container { width: 91%; }
  .faq-sidebar { flex-direction: column; }

  /* Nav */
  .nav-logo-tagline { display: none; }

  /* Hero */
  .hero-stat strong { font-size: 1.55rem; }
  .hero-stats       { flex-wrap: wrap; gap: 14px; }

  /* Grids → single column everywhere */
  .why-grid, .delivery-grid, .credentials-grid, .locations-grid, .city-photo-grid { grid-template-columns: 1fr; }
  .puppies-grid-4    { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: 1fr; }
  .whatsapp-float    { width: 50px; height: 50px; bottom: 20px; right: 20px; }
  .page-stats { gap: 12px; }
  .page-stat  { padding: 0 14px; }
  .page-stat-num { font-size: 1.55rem; }
  .hero-tags  { gap: 7px; }
  .page-header    { padding: calc(var(--header-h) + 18px) 0 28px; }
  .contact-hero   { padding: calc(var(--header-h) + 18px) 0 28px; }
  .about-hero     { padding: calc(var(--header-h) + 18px) 0 28px; }
  .location-hero  { padding: calc(var(--header-h) + 16px) 0 26px; }
  .blog-post-hero { padding: calc(var(--header-h) + 14px) 0 22px; }
  .blog-post-body { padding: 24px 0; }
  .detail-hero    { padding-top: calc(var(--header-h) + 20px); padding-bottom: 32px; }

  /* Puppy card footer */
  .puppy-card-footer { flex-direction: column; align-items: flex-start; }
  .puppy-card-footer .btn { width: 100%; }

  /* Detail */
  .detail-name  { font-size: 1.65rem; }
  .detail-price { font-size: 1.5rem; }

  /* Footer */
  .footer { padding: 40px 0 22px; }

  /* Buttons — tighter on small phones */
  .btn-lg { padding: 11px 22px; font-size: .9rem; }

  /* CTA banner */
  .cta-banner { padding: 40px 0; }
}
