﻿/*
 * The Gentle Giants Pet Store — Home Page
 * Quiet Luxury Design System
 * Cormorant Garamond (serif) + Inter (sans)
 * Warm Forest palette
 */

/* ── Design Tokens ──────────────────────────────────────────────────────── */
.home-reference {
  --hc-forest:  #1B2820;
  --hc-sage:    #4D7B61;
  --hc-gold:    #9B7729;
  --hc-cream:   #EFE9DF;
  --hc-paper:   #F8F7F2;
  --hc-ink:     #1A1917;
  --hc-muted:   #716A60;
  --hc-line:    #DBD6CC;
  --hc-white:   #FFFFFF;

  --hf-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --hf-sans:  'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;

  background: var(--hc-white);
  color: var(--hc-ink);
  font-family: var(--hf-sans);
  font-size: 15px;
  line-height: 1.6;
}

.home-reference h1,
.home-reference h2,
.home-reference h3,
.home-reference h4 {
  font-family: var(--hf-serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--hc-ink);
  margin-top: 0;
}

.home-reference .eyebrow {
  display: block;
  font-family: var(--hf-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hc-sage);
  margin: 0 0 18px;
}

/* ── Promo bar ──────────────────────────────────────────────────────────── */
.home-reference .home-promo {
  padding: 11px 24px;
  background: var(--hc-forest);
  color: rgba(255,255,255,0.75);
  font-family: var(--hf-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: center;
}

.home-reference .home-promo a {
  margin-left: 8px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Elite proof bar ────────────────────────────────────────────────────── */
.home-reference .elite-proofbar {
  position: relative;
  z-index: 55;
  border-bottom: 1px solid var(--hc-line);
  background: var(--hc-white);
}

.home-reference .elite-proofbar-inner {
  max-width: 1360px;
  margin: auto;
  padding: 12px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ── Credential badges (real-seal style) ─────────────────────────────────── */
.home-reference .elite-proof-creds {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

/* Base seal */
.home-reference .cred-seal {
  display: flex;
  align-items: stretch;
  height: 62px;
  border: 1px solid var(--hc-line);
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color .15s, box-shadow .15s;
  flex-shrink: 0;
}

.home-reference .cred-seal:hover {
  border-color: rgba(0,0,0,0.22);
  box-shadow: 0 4px 20px rgba(0,0,0,0.11);
}

/* ─ BBB Accredited Business ─ */
.home-reference .cred-bbb {
  border-color: rgba(0,61,165,0.28);
}

.home-reference .cred-bbb-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  gap: 3px;
  background: #003DA5;
  align-self: stretch;
  flex-shrink: 0;
}

.home-reference .cred-bbb-icon {
  width: 17px;
  height: auto;
  display: block;
}

.home-reference .cred-bbb-mark > b {
  font-family: var(--hf-sans);
  font-size: 9.5px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.6px;
  line-height: 1;
}

.home-reference .cred-seal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 14px 8px 10px;
}

.home-reference .cred-seal-body strong {
  display: block;
  font-family: var(--hf-sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--hc-ink);
  letter-spacing: 0.4px;
  line-height: 1.3;
  white-space: nowrap;
}

.home-reference .cred-seal-body small {
  display: block;
  margin-top: 4px;
  font-family: var(--hf-sans);
  font-size: 8.5px;
  font-weight: 600;
  color: #E07000;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* ─ TICA ─ */
.home-reference .cred-tica {
  border-color: rgba(107,26,26,0.22);
}

.home-reference .cred-tica-inner {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  gap: 11px;
  align-self: stretch;
}

.home-reference .cred-tica-logo {
  font-family: var(--hf-sans);
  font-size: 20px;
  font-weight: 900;
  color: #6B1A1A;
  letter-spacing: -0.5px;
  line-height: 1;
  padding-right: 11px;
  border-right: 1.5px solid rgba(107,26,26,0.15);
  flex-shrink: 0;
  font-style: normal;
}

.home-reference .cred-tica-text {
  display: flex;
  flex-direction: column;
}

.home-reference .cred-tica-text strong {
  display: block;
  font-family: var(--hf-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--hc-ink);
  white-space: nowrap;
}

.home-reference .cred-tica-text small {
  display: block;
  margin-top: 3px;
  font-family: var(--hf-sans);
  font-size: 9px;
  color: var(--hc-muted);
  white-space: nowrap;
}

/* ─ Google Reviews ─ */
.home-reference .cred-google {
  border-color: rgba(0,0,0,0.1);
}

.home-reference .cred-google-g {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-right: 1px solid var(--hc-line);
  align-self: stretch;
  flex-shrink: 0;
}

.home-reference .cred-google-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7px 14px 7px 11px;
  gap: 1px;
}

.home-reference .cred-google-word {
  display: block;
  font-family: Arial, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
  font-style: normal;
  letter-spacing: -0.2px;
}

.home-reference .cred-google-word i {
  font-style: normal;
}

.home-reference .cred-google-stars {
  display: block;
  font-size: 11px;
  color: #F4B400;
  line-height: 1.25;
  letter-spacing: 0.3px;
}

.home-reference .cred-google-stars em {
  font-style: normal;
  font-family: var(--hf-sans);
  font-size: 10px;
  font-weight: 600;
  color: var(--hc-ink);
  letter-spacing: 0;
}

.home-reference .cred-google-info small {
  display: block;
  font-family: var(--hf-sans);
  font-size: 9px;
  color: var(--hc-muted);
  margin-top: 1px;
}

/* ─ BBB Customer Reviews ─ */
.home-reference .cred-bbb-rev {
  border-color: rgba(0,43,122,0.28);
}

.home-reference .cred-bbb-rev .cred-bbb-mark {
  background: #002B7A;
}

.home-reference .cred-rev-stars {
  display: block;
  font-size: 13px;
  color: #FF8C00;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.home-reference .cred-bbb-rev .cred-seal-body strong {
  font-size: 10.5px;
}

.home-reference .cred-bbb-rev .cred-seal-body small {
  color: var(--hc-muted);
  font-weight: 400;
}

/* ─ Proof links ─ */
.home-reference .elite-proof-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.home-reference .elite-proof-links a {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}

.home-reference .elite-proof-links a:hover {
  color: var(--hc-forest);
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.home-reference .reference-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--hc-line);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.home-reference .reference-header-main {
  max-width: 1360px;
  margin: auto;
  min-height: 82px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
}

.home-reference .reference-logo {
  display: block;
  color: var(--hc-ink);
  font-family: var(--hf-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.home-reference .reference-logo i {
  display: none;
}

.home-reference .reference-logo span {
  display: block;
}

.home-reference .reference-logo small {
  display: block;
  margin-top: 5px;
  color: var(--hc-sage);
  font-family: var(--hf-sans);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.home-reference .reference-search {
  max-width: 440px;
  justify-self: center;
  width: 100%;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--hc-line);
  border-radius: 2px;
  background: var(--hc-paper);
}

.home-reference .reference-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  border: 0;
  background: transparent;
  color: var(--hc-ink);
  font-family: var(--hf-sans);
  font-size: 13px;
  outline: none;
}

.home-reference .reference-search input::placeholder {
  color: var(--hc-muted);
}

.home-reference .reference-search button {
  padding: 0 18px;
  border: 0;
  background: var(--hc-forest);
  color: #fff;
  font-family: var(--hf-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.home-reference .reference-search button:hover {
  background: var(--hc-sage);
}

.home-reference .reference-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-reference .reference-actions a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s;
}

.home-reference .reference-actions a:hover {
  color: var(--hc-forest);
}

.home-reference .reference-actions svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-reference .reference-actions b {
  display: none;
}

.home-reference .reference-actions i {
  position: absolute;
  top: -5px;
  right: -3px;
  min-width: 16px;
  padding: 1px 4px;
  border-radius: 8px;
  background: var(--hc-forest);
  color: #fff;
  font-style: normal;
  font-family: var(--hf-sans);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
}

/* Navigation */
.home-reference .reference-nav {
  border-top: 1px solid var(--hc-line);
  background: var(--hc-white);
}

.home-reference .reference-nav-inner {
  max-width: 1360px;
  margin: auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-reference .reference-nav a {
  padding: 13px 17px;
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s;
}

.home-reference .reference-nav a:hover,
.home-reference .reference-nav a.active {
  color: var(--hc-forest);
  background: transparent;
}

/* Mobile hamburger */
.home-reference .mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.home-reference .mobile-menu span {
  display: block;
  height: 1.5px;
  background: var(--hc-ink);
  border-radius: 0;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.home-reference .reference-hero {
  position: relative;
  min-height: 740px;
  border: 0;
  background:
    url('../uploads/site/family-kitten-hero-v2.png')
    center / cover no-repeat;
  overflow: hidden;
}

.home-reference .reference-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    rgba(250, 248, 244, 0.97) 0%,
    rgba(250, 248, 244, 0.88) 34%,
    rgba(250, 248, 244, 0.40) 56%,
    rgba(250, 248, 244, 0.00) 74%
  );
}

.home-reference .reference-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  min-height: 740px;
  margin: auto;
  padding: 100px 42px;
  display: flex;
  align-items: center;
}

.home-reference .reference-hero-copy {
  max-width: 560px;
  padding: 0;
}

.home-reference .reference-hero h1 {
  margin: 0 0 28px;
  color: var(--hc-ink);
  font-family: var(--hf-serif);
  font-size: clamp(60px, 6.5vw, 96px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.home-reference .reference-hero h1 em {
  color: var(--hc-sage);
  font-style: italic;
  font-weight: 300;
}

.home-reference .hero-long-copy {
  max-width: 430px;
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 15px;
  line-height: 1.78;
  margin: 0;
}

.home-reference .reference-hero p:not(.eyebrow) {
  color: var(--hc-muted);
  font-size: 15px;
  line-height: 1.78;
}

.home-reference .hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.home-reference .btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--hc-forest);
  color: #fff;
  font-family: var(--hf-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}

.home-reference .btn:hover {
  background: var(--hc-sage);
  box-shadow: none;
  transform: none;
}

.home-reference .btn.btn-secondary {
  background: transparent;
  border-color: var(--hc-forest);
  color: var(--hc-forest);
}

.home-reference .btn.btn-secondary:hover {
  background: var(--hc-forest);
  color: #fff;
}

.home-reference .home-text-link {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--hc-muted);
  color: var(--hc-ink);
  font-family: var(--hf-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}

.home-reference .home-text-link:hover {
  color: var(--hc-sage);
  border-color: var(--hc-sage);
}

/* Hero stats */
.home-reference .home-hero-stats {
  display: flex;
  gap: 0;
  max-width: none;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--hc-line);
}

.home-reference .home-hero-stats span {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 24px 0 24px;
  border-right: 1px solid var(--hc-line);
}

.home-reference .home-hero-stats span:first-child {
  padding-left: 0;
}

.home-reference .home-hero-stats span:last-child {
  border-right: 0;
}

.home-reference .home-hero-stats strong {
  display: block;
  color: var(--hc-ink);
  font-family: var(--hf-serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.home-reference .home-hero-stats small {
  display: block;
  font-family: var(--hf-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hc-muted);
  line-height: 1.4;
}

/* Hero note card */
.home-reference .home-hero-note {
  position: absolute;
  right: 42px;
  bottom: 42px;
  z-index: 2;
  width: 218px;
  padding: 22px 24px;
  background: var(--hc-white);
  border: 1px solid var(--hc-line);
  border-left: 3px solid var(--hc-sage);
}

.home-reference .home-hero-note span {
  display: block;
  color: var(--hc-sage);
  font-family: var(--hf-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-reference .home-hero-note strong {
  display: block;
  margin: 10px 0 14px;
  color: var(--hc-ink);
  font-family: var(--hf-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.home-reference .home-hero-note a {
  display: inline-block;
  color: var(--hc-sage);
  font-family: var(--hf-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--hc-sage);
  padding-bottom: 1px;
}

/* ── Breed ticker ────────────────────────────────────────────────────────── */
.home-reference .home-ticker {
  overflow: hidden;
  border-top: 0;
  background: var(--hc-forest);
  padding: 14px 0;
}

.home-reference .home-ticker-track span {
  color: rgba(255,255,255,0.45);
  font-family: var(--hf-serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding: 0 22px;
}

.home-reference .home-ticker-dot {
  color: rgba(255,255,255,0.18) !important;
  font-size: 6px !important;
  padding: 0 2px !important;
  vertical-align: middle;
}

/* ── Assurances ──────────────────────────────────────────────────────────── */
.home-reference .reference-assurances {
  border-bottom: 1px solid var(--hc-line);
  background: var(--hc-paper);
}

.home-reference .reference-assurances-inner {
  max-width: 1360px;
  margin: auto;
  padding: 0 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home-reference .reference-assurances article {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 48px 38px;
  min-height: 0;
  border-right: 1px solid var(--hc-line);
}

.home-reference .reference-assurances article:last-child {
  border-right: 0;
}

.home-reference .reference-assurances article > div {
  flex: 1;
}

.home-reference .reference-assurances article i {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin: 4px 0 0;
  border: 0;
  border-radius: 0;
  color: var(--hc-sage);
  font-family: var(--hf-serif);
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  background: transparent;
  box-shadow: none;
}

.home-reference .reference-assurances strong {
  display: block;
  color: var(--hc-ink);
  font-family: var(--hf-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}

.home-reference .reference-assurances span {
  display: block;
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 13.5px;
  line-height: 1.7;
  margin-top: 0;
}

/* ── Featured kittens ────────────────────────────────────────────────────── */
.home-reference .reference-products-section {
  max-width: none;
  background: var(--hc-paper);
  padding: 100px 0;
}

.home-reference .reference-products-section > * {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 42px;
  padding-right: 42px;
}

.home-reference .reference-title {
  text-align: left;
  max-width: none;
  margin-bottom: 52px;
}

.home-reference .reference-title h2 {
  font-family: var(--hf-serif);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--hc-ink);
  margin-bottom: 16px;
}

.home-reference .reference-title p:not(.eyebrow) {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 14.5px;
  max-width: 480px;
  line-height: 1.7;
  margin: 0;
}

/* Featured kittens grid */
.home-reference .reference-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  border: none;
}

/* Card shell */
.home-reference .product-card {
  position: relative;
  background: var(--hc-white);
  border: 1px solid var(--hc-line);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-reference .product-card:hover {
  box-shadow: 0 8px 32px rgba(27,40,32,0.12);
  border-color: rgba(27,40,32,0.22);
  transform: none;
}

.home-reference .product-card--skeleton {
  border: 1px solid var(--hc-line);
}

/* Image link */
.home-reference .product-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 0;
}

.home-reference .product-image-link img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-reference .product-card:hover .product-image-link img {
  transform: scale(1.05);
}

/* Hover overlay */
.home-reference .product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,40,32,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.home-reference .product-card:hover .product-overlay { opacity: 1; }

.home-reference .product-overlay span {
  color: var(--hc-white);
  font-family: var(--hf-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 8px 18px;
}

/* Content area — <a> tag */
.home-reference .product-content {
  display: block;
  padding: 14px 16px 0;
  text-decoration: none;
  color: inherit;
}

/* Breed · Gender — above name */
.home-reference .product-meta {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 6px;
}

/* Kitten name */
.home-reference .product-content h3 {
  font-family: var(--hf-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--hc-ink);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

/* Card footer — price left, available tag right */
.home-reference .product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0 14px;
  border-top: 1px solid var(--hc-line);
}

.home-reference .price {
  margin: 0;
  line-height: 1;
  color: var(--hc-ink);
  font-family: var(--hf-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.home-reference .product-avail-tag {
  font-family: var(--hf-sans);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hc-sage);
  white-space: nowrap;
}

.home-reference .center {
  text-align: center;
  padding-top: 52px;
}

/* ── Stat strip ──────────────────────────────────────────────────────────── */
.home-reference .home-stat-strip {
  background: var(--hc-cream);
  border-top: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
}

.home-reference .home-stat-strip-inner {
  max-width: 1360px;
  margin: auto;
  padding: 0 42px;
  display: flex;
  align-items: stretch;
}

.home-reference .home-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 58px 28px;
  text-align: center;
}

.home-reference .home-stat strong {
  display: block;
  font-family: var(--hf-serif);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--hc-ink);
  line-height: 1;
}

.home-reference .home-stat span {
  display: block;
  margin-top: 10px;
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.home-reference .home-stat-divider {
  width: 1px;
  background: var(--hc-line);
  margin: 36px 0;
  flex-shrink: 0;
}

/* ── Story ───────────────────────────────────────────────────────────────── */
.home-reference .home-story {
  padding: 130px 42px;
  background: var(--hc-white);
}

.home-reference .home-story-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.home-reference .home-story-image {
  position: relative;
  padding: 0 0 44px 44px;
}

.home-reference .home-story-image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 76%;
  background: var(--hc-cream);
}

.home-reference .home-story-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  display: block;
}

.home-reference .home-story-image span {
  position: absolute;
  right: -36px;
  bottom: 8px;
  z-index: 2;
  max-width: 180px;
  padding: 20px 22px;
  background: var(--hc-forest);
  color: rgba(255,255,255,0.88);
  font-family: var(--hf-serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.home-reference .home-story-copy h2 {
  font-family: var(--hf-serif);
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--hc-ink);
  margin-bottom: 22px;
}

.home-reference .home-story-copy > p:not(.eyebrow) {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}

.home-reference .home-story-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin: 44px 0 38px;
}

.home-reference .home-story-points div {
  padding-top: 20px;
  border-top: 1px solid var(--hc-line);
}

.home-reference .home-story-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hc-ink);
  font-family: var(--hf-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.home-reference .home-story-points span {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 13px;
  line-height: 1.7;
}

/* ── Section wrapper (breeds) ────────────────────────────────────────────── */
.home-reference .reference-section {
  max-width: 1360px;
  margin: auto;
  padding: 100px 42px;
}

.home-reference .home-breeds {
  background: var(--hc-paper);
}

.home-reference .reference-breed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.home-reference .reference-breed-grid .breed-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--hc-cream);
  cursor: pointer;
  transition: none;
  box-shadow: none;
}

.home-reference .reference-breed-grid .breed-card:hover {
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.home-reference .reference-breed-grid .breed-card img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.6s ease;
}

.home-reference .reference-breed-grid .breed-card:hover img {
  transform: scale(1.05);
}

.home-reference .reference-breed-grid .breed-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 52px 16px 18px;
  background: linear-gradient(0deg, rgba(20, 30, 24, 0.76) 0%, transparent 100%);
  color: #fff;
  font-family: var(--hf-serif);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
  text-align: left;
}

/* ── Credential wall ─────────────────────────────────────────────────────── */
.home-reference .home-credential-wall {
  padding: 100px 42px;
  background: var(--hc-cream);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
  max-width: none;
  margin: 0;
}

.home-reference .credential-copy {
  padding-top: 6px;
}

.home-reference .credential-copy h2 {
  font-family: var(--hf-serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--hc-ink);
  margin-bottom: 20px;
}

.home-reference .credential-copy p {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.home-reference .credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.home-reference .credential-card {
  padding: 32px 28px;
  background: var(--hc-white);
  border: 1px solid var(--hc-line);
  border-top: 3px solid var(--hc-sage);
  border-radius: 0;
  min-height: 0;
}

.home-reference .credential-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  object-fit: contain;
  display: block;
}

.home-reference .credential-card strong {
  display: block;
  color: var(--hc-ink);
  font-family: var(--hf-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}

.home-reference .credential-card p {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.home-reference .home-review-suite {
  padding: 100px 42px;
  background: var(--hc-forest);
}

.home-reference .review-suite-heading {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.home-reference .review-suite-heading .eyebrow {
  color: rgba(255,255,255,0.45);
}

.home-reference .home-review-suite h2,
.home-reference .review-suite-heading h2 {
  color: #fff;
  font-family: var(--hf-serif);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.home-reference .review-suite-heading p {
  color: rgba(255,255,255,0.52);
  font-family: var(--hf-sans);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  max-width: none;
}

.home-reference .review-suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.home-reference .review-suite-grid article {
  padding: 36px 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
}

.home-reference .home-review-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.home-reference .home-review-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-reference .review-suite-grid .stars {
  color: var(--hc-gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.home-reference .review-suite-grid p {
  color: rgba(255,255,255,0.75);
  font-family: var(--hf-serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0 0 24px;
  font-style: italic;
  min-height: 0;
}

.home-reference .review-suite-grid strong {
  display: block;
  color: rgba(255,255,255,0.4);
  font-family: var(--hf-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-reference .home-review-suite .center a {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.35);
}

.home-reference .home-review-suite .center a:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.7);
}

/* ── Process ─────────────────────────────────────────────────────────────── */
.home-reference .home-process {
  padding: 120px 42px;
  background: var(--hc-white);
}

.home-reference .home-process-inner {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.home-reference .home-process .eyebrow {
  color: var(--hc-sage);
}

.home-reference .home-process-heading h2 {
  font-family: var(--hf-serif);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--hc-ink);
  margin-bottom: 20px;
}

.home-reference .home-process-heading > p:not(.eyebrow) {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0;
}

.home-reference .home-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.home-reference .home-process-grid article {
  padding: 32px 28px 32px 0;
  border-top: 1px solid var(--hc-line);
  border-right: 1px solid var(--hc-line);
}

.home-reference .home-process-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-reference .home-process-grid span {
  display: block;
  color: var(--hc-sage);
  font-family: var(--hf-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.home-reference .home-process-grid h3 {
  font-family: var(--hf-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--hc-ink);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.home-reference .home-process-grid p {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 13.5px;
  line-height: 1.75;
  margin: 0;
}

/* ── Concierge CTA ───────────────────────────────────────────────────────── */
.home-reference .home-concierge {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 42px;
  display: flex;
  align-items: center;
  gap: 60px;
  border-top: 1px solid var(--hc-line);
  border-bottom: 1px solid var(--hc-line);
  border-radius: 0;
}

.home-reference .home-concierge > div:first-child {
  flex: 1;
}

.home-reference .home-concierge .eyebrow {
  color: var(--hc-sage);
}

.home-reference .home-concierge h2 {
  font-family: var(--hf-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--hc-ink);
  max-width: 640px;
  margin: 0;
}

.home-reference .concierge-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 200px;
}

.home-reference .concierge-steps span {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 13px;
  letter-spacing: 0.01em;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

/* ── Closing ─────────────────────────────────────────────────────────────── */
.home-reference .home-closing {
  padding: 130px 42px;
  background: var(--hc-paper);
  text-align: center;
}

.home-reference .home-closing-inner {
  max-width: 680px;
  margin: auto;
}

.home-reference .home-closing h2 {
  font-family: var(--hf-serif);
  font-size: clamp(44px, 5.2vw, 74px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.97;
  color: var(--hc-ink);
  margin-bottom: 22px;
}

.home-reference .home-closing p:not(.eyebrow) {
  color: var(--hc-muted);
  font-family: var(--hf-sans);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

.home-reference .home-closing .hero-actions {
  justify-content: center;
  margin-top: 38px;
}

/* ── Floating chat ───────────────────────────────────────────────────────── */
.home-reference .floating-chat {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 20px;
  background: var(--hc-forest);
  color: rgba(255,255,255,0.85);
  font-family: var(--hf-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(27, 40, 32, 0.24);
  transition: background 0.2s;
}

.home-reference .floating-chat:hover {
  background: var(--hc-sage);
}

.home-reference .floating-chat b {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-family: var(--hf-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.home-reference .reference-footer {
  background: var(--hc-forest);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.home-reference .reference-footer-inner {
  max-width: 1360px;
  margin: auto;
  padding: 80px 42px 70px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
}

.home-reference .reference-footer h3 {
  color: rgba(255,255,255,0.9);
  font-family: var(--hf-serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}

.home-reference .reference-footer p,
.home-reference .reference-footer a,
.home-reference .reference-footer strong {
  display: block;
  color: rgba(255,255,255,0.5);
  font-family: var(--hf-sans);
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 8px;
  text-decoration: none;
  transition: color 0.15s;
}

.home-reference .reference-footer a:hover {
  color: rgba(255,255,255,0.88);
}

.home-reference .reference-footer strong {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.home-reference .reference-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 42px;
  color: rgba(255,255,255,0.28);
  font-family: var(--hf-sans);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Responsive: 1100px ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .home-reference .reference-header-main {
    grid-template-columns: 200px 1fr auto;
    padding-inline: 24px;
  }

  .home-reference .home-story-inner {
    gap: 60px;
  }

  .home-reference .home-story-image span {
    right: -14px;
  }

  .home-reference .home-process-inner {
    gap: 60px;
  }

  .home-reference .home-credential-wall {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 42px;
  }

  .home-reference .credential-copy {
    max-width: 560px;
  }

  .home-reference .home-stat strong {
    font-size: 52px;
  }
}

/* ── Responsive: 900px ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .home-reference .reference-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-reference .reference-breed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-reference .reference-assurances-inner {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .home-reference .reference-assurances article {
    border-right: 0;
    border-bottom: 1px solid var(--hc-line);
    padding: 34px 0;
  }

  .home-reference .reference-assurances article:last-child {
    border-bottom: 0;
  }

  .home-reference .home-story-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .home-reference .home-story-image span {
    right: -4px;
  }

  .home-reference .home-process-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .home-reference .home-process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-reference .home-process-grid article {
    padding: 28px 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--hc-line);
  }

  .home-reference .home-process-grid article:first-child {
    border-top: 1px solid var(--hc-line);
  }

  .home-reference .home-process-grid article:last-child {
    border-bottom: 0;
  }

  .home-reference .review-suite-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-reference .home-concierge {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 56px 24px;
  }

  .home-reference .reference-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 64px 24px 56px;
  }
}

/* ── Responsive: 640px ───────────────────────────────────────────────────── */
@media (max-width: 640px) {

  /* Header */
  .home-reference .reference-header-main {
    min-height: 62px;
    padding: 0 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    grid-template-columns: none;
  }

  .home-reference .mobile-menu {
    display: flex;
  }

  .home-reference .reference-logo {
    margin-right: auto;
    font-size: 18px;
  }

  .home-reference .reference-search {
    display: none;
  }

  .home-reference .reference-actions a:nth-child(1),
  .home-reference .reference-actions a:nth-child(3) {
    display: none;
  }

  .home-reference .reference-actions span {
    display: none;
  }

  .home-reference .reference-nav {
    display: none;
  }

  .home-reference .reference-header.nav-open .reference-nav {
    display: block;
  }

  .home-reference .reference-header.nav-open .reference-nav-inner {
    flex-direction: column;
    padding: 0;
  }

  .home-reference .reference-header.nav-open .reference-nav a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--hc-line);
    font-size: 12px;
  }

  /* Proofbar — 2×2 grid on mobile */
  .home-reference .elite-proofbar-inner {
    padding: 10px 16px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .home-reference .elite-proof-creds {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    align-items: stretch;
  }

  .home-reference .cred-seal {
    height: auto;
    min-height: 52px;
  }

  .home-reference .cred-bbb-mark {
    padding: 7px 9px;
    min-width: 40px;
  }

  .home-reference .cred-bbb-icon {
    width: 13px;
  }

  .home-reference .cred-bbb-mark > b {
    font-size: 8.5px;
  }

  .home-reference .cred-seal-body {
    padding: 7px 9px 7px 8px;
  }

  .home-reference .cred-seal-body strong {
    font-size: 9px;
    letter-spacing: 0.2px;
  }

  .home-reference .cred-seal-body small {
    font-size: 7.5px;
    margin-top: 3px;
  }

  .home-reference .cred-tica-inner {
    padding: 8px 10px;
    gap: 8px;
  }

  .home-reference .cred-tica-logo {
    font-size: 17px;
    padding-right: 8px;
  }

  .home-reference .cred-tica-text strong {
    font-size: 9.5px;
  }

  .home-reference .cred-tica-text small {
    font-size: 8px;
  }

  .home-reference .cred-google-g {
    padding: 0 9px;
  }

  .home-reference .cred-google-g svg {
    width: 24px;
    height: 24px;
  }

  .home-reference .cred-google-info {
    padding: 6px 9px 6px 9px;
  }

  .home-reference .cred-google-word {
    font-size: 13px;
  }

  .home-reference .cred-google-stars {
    font-size: 9.5px;
  }

  .home-reference .cred-rev-stars {
    font-size: 11px;
  }

  .home-reference .elite-proof-links {
    display: none;
  }

  /* ── Hero: split layout (photo top / white card bottom) ── */
  .home-reference .reference-hero {
    min-height: 100svh;
    background-position: 60% 18%;
    background-size: cover;
    display: flex;
    flex-direction: column;
  }

  /* Remove gradient — clean photo shows in top area */
  .home-reference .reference-hero::before {
    display: none;
  }

  /* Inner becomes a flex column that fills the section */
  .home-reference .reference-hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 0;
    max-width: 100%;
    margin: 0;
  }

  /* Transparent spacer — lets the hero photo show through */
  .home-reference .reference-hero-inner::before {
    content: '';
    display: block;
    height: 44vh;
    min-height: 180px;
    max-height: 260px;
    flex-shrink: 0;
  }

  /* White content card fills the rest of the section */
  .home-reference .reference-hero-copy {
    flex: 1;
    background: var(--hc-white);
    max-width: 100%;
    padding: 30px 24px 44px;
    border-top: 1px solid var(--hc-line);
  }

  /* Eyebrow */
  .home-reference .reference-hero .eyebrow {
    font-size: 9px;
    letter-spacing: 0.22em;
    margin-bottom: 12px;
  }

  .home-reference .reference-hero h1 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 1.0;
    margin-bottom: 0;
    letter-spacing: -0.04em;
  }

  /* Bring back the paragraph — visible inside the white card */
  .home-reference .hero-long-copy {
    display: block;
    font-size: 13px;
    line-height: 1.72;
    margin-top: 14px;
    color: var(--hc-muted);
    max-width: 100%;
  }

  /* Actions: full-width button, text link below */
  .home-reference .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 22px;
    width: 100%;
    max-width: 100%;
  }

  .home-reference .hero-actions .btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    font-size: 10.5px;
    letter-spacing: 0.18em;
  }

  .home-reference .hero-actions .home-text-link {
    display: block;
    text-align: center;
    font-size: 11.5px;
    margin-top: 14px;
    color: var(--hc-muted);
    border-bottom-color: transparent;
    letter-spacing: 0.02em;
  }

  .home-reference .hero-actions .home-text-link:hover {
    color: var(--hc-sage);
  }

  .home-reference .home-hero-note {
    display: none;
  }

  /* Stats: 3-column grid */
  .home-reference .home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--hc-line);
  }

  .home-reference .home-hero-stats span {
    flex: unset;
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    border-right: 1px solid var(--hc-line);
    border-bottom: 0;
  }

  .home-reference .home-hero-stats span:first-child {
    padding-left: 0;
  }

  .home-reference .home-hero-stats span:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .home-reference .home-hero-stats strong {
    font-size: 28px;
    letter-spacing: -0.04em;
    margin-bottom: 4px;
  }

  .home-reference .home-hero-stats small {
    font-size: 8.5px;
    letter-spacing: 0.09em;
  }

  /* Assurances */
  .home-reference .reference-assurances-inner {
    padding-inline: 20px;
  }

  /* Ticker */
  .home-reference .home-ticker {
    padding: 12px 0;
  }

  /* Story */
  .home-reference .home-story {
    padding: 72px 20px;
  }

  .home-reference .home-story-image {
    padding: 0 0 24px 24px;
  }

  .home-reference .home-story-image span {
    right: -2px;
    font-size: 13.5px;
    padding: 12px 14px;
    max-width: 150px;
  }

  .home-reference .home-story-copy h2 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .home-reference .home-story-points {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-reference .home-story-points div {
    padding: 18px 0;
    border-top: 1px solid var(--hc-line);
    border-bottom: 0;
  }

  /* Products */
  .home-reference .reference-section {
    padding: 64px 20px;
  }

  .home-reference .reference-products-section {
    padding: 64px 0;
  }

  .home-reference .reference-products-section > * {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-reference .reference-title {
    padding-bottom: 24px;
  }

  .home-reference .reference-title h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .home-reference .reference-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
  }

  .home-reference .product-content {
    padding: 12px 14px 0;
  }

  .home-reference .product-content h3 {
    font-size: 16px;
  }

  .home-reference .product-card-footer {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .home-reference .product-card-footer .price {
    font-size: 17px;
  }

  /* Stat strip */
  .home-reference .home-stat-strip-inner {
    flex-wrap: wrap;
  }

  .home-reference .home-stat {
    flex-basis: 50%;
    padding: 36px 16px;
  }

  .home-reference .home-stat strong {
    font-size: 46px;
  }

  .home-reference .home-stat-divider:nth-child(4) {
    display: none;
  }

  /* Breeds */
  .home-reference .reference-breed-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .home-reference .reference-breed-grid .breed-card span {
    font-size: 18px;
    padding: 36px 12px 14px;
    letter-spacing: -0.02em;
  }

  /* Reviews */
  .home-reference .home-review-suite {
    padding: 64px 20px;
  }

  .home-reference .home-review-suite h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .home-reference .review-suite-grid article {
    padding: 26px 20px;
  }

  /* Credential wall */
  .home-reference .home-credential-wall {
    padding: 64px 20px;
  }

  .home-reference .credential-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Process */
  .home-reference .home-process {
    padding: 64px 20px;
  }

  .home-reference .home-process-heading h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  /* Concierge */
  .home-reference .home-concierge {
    padding: 52px 20px;
  }

  /* Closing */
  .home-reference .home-closing {
    padding: 72px 20px;
  }

  .home-reference .home-closing h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  /* Footer */
  .home-reference .reference-footer-inner {
    grid-template-columns: 1fr;
    padding: 52px 20px 40px;
    gap: 24px;
  }

  .home-reference .reference-footer-inner h3 {
    font-size: 19px;
    margin-bottom: 14px;
  }

  .home-reference .reference-footer-bottom {
    padding: 16px 20px;
    font-size: 11px;
  }

  /* Floating chat */
  .home-reference .floating-chat span {
    display: none;
  }

  .home-reference .floating-chat {
    padding: 10px 12px;
    border-radius: 50%;
  }
}

/* ── Responsive: 390px (small phones) ────────────────────────────────────── */
@media (max-width: 390px) {

  .home-reference .elite-proof-creds {
    grid-template-columns: 1fr 1fr;
  }

  .home-reference .cred-badge-info strong {
    font-size: 9px;
  }

  .home-reference .cred-badge-info small {
    display: none;
  }

  .home-reference .reference-hero h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .home-reference .home-hero-stats strong {
    font-size: 24px;
  }

  .home-reference .reference-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
  }

  .home-reference .product-content {
    padding: 12px 14px 0;
  }

  .home-reference .product-card-footer {
    flex-direction: row;
    align-items: center;
  }

  .home-reference .home-stat {
    flex-basis: 50%;
    padding: 28px 12px;
  }

  .home-reference .home-stat strong {
    font-size: 38px;
  }

  .home-reference .reference-breed-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Home card definitive reset — wins over storefront.css ───────────────── */
.home-reference .reference-products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px 20px !important;
  border: none !important;
}

.home-reference .product-card {
  border: 1px solid var(--hc-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: box-shadow 0.25s ease, border-color 0.25s ease !important;
  overflow: hidden !important;
}

.home-reference .product-card:hover {
  box-shadow: 0 8px 32px rgba(27,40,32,0.12) !important;
  border-color: rgba(27,40,32,0.22) !important;
  transform: none !important;
}

.home-reference .product-image-link {
  border-radius: 0 !important;
}

.home-reference .product-image-link img {
  aspect-ratio: 1 !important;
  border-radius: 0 !important;
}

.home-reference .product-content {
  display: block !important;
  padding: 14px 16px 0 !important;
  text-decoration: none !important;
  color: inherit !important;
}

.home-reference .product-content h3 {
  font-size: 17px !important;
  font-family: var(--hf-serif) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  color: var(--hc-ink) !important;
  margin: 0 0 12px !important;
}

.home-reference .product-meta {
  font-size: 9px !important;
  font-family: var(--hf-sans) !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--hc-muted) !important;
  margin: 0 0 6px !important;
}

.home-reference .product-card-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 0 14px !important;
  border-top: 1px solid var(--hc-line) !important;
  margin: 0 !important;
}

.home-reference .product-card-footer .price {
  font-family: var(--hf-serif) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: var(--hc-ink) !important;
}

.home-reference .product-avail-tag {
  font-family: var(--hf-sans) !important;
  font-size: 8.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--hc-sage) !important;
}

@media (max-width: 640px) {
  .home-reference .reference-products-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 12px !important;
  }

  .home-reference .product-content {
    padding: 12px 14px 0 !important;
  }

  .home-reference .product-content h3 {
    font-size: 16px !important;
  }
}

@media (max-width: 390px) {
  .home-reference .reference-products-grid {
    gap: 12px 10px !important;
  }
}

