/* ═══════════════════════════════════════════
   MustHaveFrenchies — Premium Aesthetic
   Dark / Gold / Cosmic Purple
   ═══════════════════════════════════════════ */

:root {
  --bg-deep: #0a0a12;
  --bg-dark: #111119;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --gold: #d4a574;
  --gold-light: #e8c9a0;
  --gold-glow: rgba(212, 165, 116, 0.3);
  --purple: #6b3fa0;
  --purple-deep: #4a1a6b;
  --purple-glow: rgba(107, 63, 160, 0.25);
  --green: #2d8f4e;
  --red: #c0392b;
  --text: #e8e8e8;
  --text-dim: #8a8a9a;
  --text-muted: #55556a;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-deep);
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--bg-deep);
}

/* ═══════════════ LOADING SCREEN ═══════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--purple-deep) 0%, var(--bg-deep) 60%);
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.5); }
}

.paw-trail {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  min-height: 60px;
}

.paw-print {
  color: var(--gold);
  opacity: 0;
  transform: scale(0) rotate(-20deg);
  filter: drop-shadow(0 0 12px var(--gold));
  animation: pawAppear 0.5s ease forwards;
}

@keyframes pawAppear {
  0% { opacity: 0; transform: scale(0) rotate(-20deg); }
  50% { transform: scale(1.3) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.loader-logo {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.loader-logo.visible {
  opacity: 1;
  transform: scale(1);
}

.logo-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

.loader-logo-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 3px solid var(--gold);
}

.loader-logo-fallback {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.logo-text-main {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 6px;
}

.logo-text-accent {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 12px;
  color: var(--text-dim);
}

.loader-tagline {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.loader-tagline.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ NAVIGATION ═══════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 18, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-cta {
  background: var(--gold);
  color: var(--bg-deep) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-link-cta::after {
  display: none;
}

.nav-link-cta:hover {
  background: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-frenchie.jpg') center/cover no-repeat;
  opacity: 0.15;
  filter: blur(2px) saturate(0.6);
  transform: scale(1.05);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, var(--purple-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, var(--gold-glow) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,18,0.6) 0%, rgba(10,10,18,0.8) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: heroFloat linear infinite;
}

@keyframes heroFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 165, 116, 0.3);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
  font-size: clamp(36px, 7vw, 72px);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title-accent {
  color: var(--gold);
  animation-delay: 0.7s;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-pillars {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
}

.pillar-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 2s forwards;
}

.hero-scroll-indicator span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-paw {
  color: var(--gold);
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-paw svg {
  width: 20px;
  height: 20px;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(212, 165, 116, 0.1);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ═══════════════ SECTIONS ═══════════════ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-dim);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 300;
}

.text-accent {
  color: var(--gold);
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 50%, var(--purple-glow) 0%, transparent 50%),
    var(--bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.about-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.15);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card-icon {
  margin-bottom: 20px;
}

.about-card-icon svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.about-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.about-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

.about-statement {
  text-align: center;
}

.about-statement blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  position: relative;
  padding: 40px 0;
}

.about-statement blockquote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  font-family: 'Playfair Display', serif;
}

/* ═══════════════ GALLERY ═══════════════ */
.gallery {
  background: var(--bg-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  margin-bottom: 48px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(107, 63, 160, 0.1) 100%);
}

.gallery-placeholder-paw {
  font-size: 40px;
  opacity: 0.3;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,18,0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-light);
}

.gallery-cta {
  text-align: center;
}

/* ═══════════════ EDUCATION ═══════════════ */
.education {
  background:
    radial-gradient(ellipse at 20% 50%, var(--purple-glow) 0%, transparent 50%),
    var(--bg-dark);
}

.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.edu-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 40px 30px;
  position: relative;
  transition: all 0.4s ease;
}

.edu-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.15);
}

.edu-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  right: 24px;
}

.edu-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.edu-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

.edu-cta {
  text-align: center;
}

.edu-cta p {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

/* ═══════════════ TESTIMONIAL STRIP ═══════════════ */
.testimonial-strip {
  background: var(--bg-deep);
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  overflow: hidden;
  padding: 24px 0;
}

.testimonial-scroll {
  display: flex;
  gap: 60px;
  animation: scrollMarquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.testimonial-item {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--gold-light);
  opacity: 0.6;
  flex-shrink: 0;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════ CONTACT ═══════════════ */
.contact {
  background:
    radial-gradient(ellipse at 50% 80%, var(--purple-glow) 0%, transparent 50%),
    var(--bg-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: all 0.4s ease;
}

.contact-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.2);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--gold);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-dim);
}

.contact-note {
  text-align: center;
}

.contact-note p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-paw {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.inline-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  color: var(--gold);
  display: inline-block;
  margin-right: 4px;
}

.stars {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.stars svg {
  width: 80px;
  height: 16px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 2px;
}

.footer-social a {
  color: var(--gold);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-social a:hover {
  color: var(--gold-light);
  transform: scale(1.15);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════ REVEAL ANIMATION ═══════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ ACTIVE NAV LINK ═══════════════ */
.nav-link-active {
  color: var(--gold) !important;
}

.nav-link-active::after {
  width: 100% !important;
}

/* ═══════════════ FOOTER LINKS ═══════════════ */
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ═══════════════ CURSOR PAW TRAIL ═══════════════ */
.cursor-paw {
  position: absolute;
  width: 16px;
  height: 16px;
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  z-index: 9998;
  animation: cursorPawFade 1.2s ease forwards;
}

.cursor-paw svg {
  width: 16px;
  height: 16px;
}

@keyframes cursorPawFade {
  0% { opacity: 0; transform: scale(0) rotate(-10deg); }
  20% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  100% { opacity: 0; transform: scale(0.5) rotate(10deg); }
}

/* ═══════════════ PAGE HERO (Sub-pages) ═══════════════ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
  padding-top: 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: blur(3px) saturate(0.5);
  transform: scale(1.05);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, var(--purple-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, var(--gold-glow) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10,10,18,0.5) 0%, rgba(10,10,18,0.9) 100%);
}

.page-hero-particles {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 800px;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.page-hero-subtitle {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

/* ═══════════════ PUPPY CARDS ═══════════════ */
.filter-section {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.filter-container {
  padding: 24px 24px !important;
}

.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg-card);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-available { background: var(--green); }
.status-reserved { background: var(--gold); }
.status-sold { background: var(--text-muted); }

.puppies-section {
  background: var(--bg-deep);
}

.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.puppy-card {
  perspective: 1000px;
  cursor: pointer;
  height: 480px;
}

.puppy-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.puppy-card.flipped .puppy-card-inner {
  transform: rotateY(180deg);
}

.puppy-card-front, .puppy-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
}

.puppy-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  gap: 20px;
}

.puppy-card-back h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}

.puppy-back-details {
  width: 100%;
}

.puppy-back-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
}

.puppy-back-label {
  color: var(--text-muted);
  font-weight: 500;
}

.puppy-back-value {
  color: var(--text);
}

.health-check {
  display: flex;
  align-items: center;
  gap: 6px;
}

.health-check svg {
  width: 16px;
  height: 16px;
}

.puppy-image-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.puppy-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.puppy-card:hover .puppy-image-wrap img {
  transform: scale(1.05);
}

.puppy-status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.puppy-status-badge.status-available {
  background: var(--green);
  color: white;
  animation: badgePulse 2s ease-in-out infinite;
}

.puppy-status-badge.status-reserved {
  background: var(--gold);
  color: var(--bg-deep);
}

.puppy-status-badge.status-sold {
  background: rgba(85, 85, 106, 0.8);
  color: var(--text-dim);
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(45, 143, 78, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(45, 143, 78, 0); }
}

.puppy-gender-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(10, 10, 18, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.puppy-gender-badge svg {
  width: 14px;
  height: 14px;
}

.puppy-info {
  padding: 20px;
}

.puppy-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.puppy-details {
  display: flex;
  gap: 16px;
}

.puppy-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
}

.puppy-detail svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.puppy-flip-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

.puppies-empty {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 80px 24px;
  text-align: center;
  color: var(--text-muted);
}

.puppies-empty-icon {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.puppies-empty h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dim);
}

.puppies-cta .puppies-cta-card,
.about-cta-card,
.coown-cta-card,
.whelp-cta-card,
.litter-waitlist-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 165, 116, 0.15);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
}

.puppies-cta-card h3,
.litter-waitlist-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.puppies-cta-card p,
.litter-waitlist-card p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.puppies-cta-actions,
.about-cta-actions,
.whelp-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════ DNA HELIX DIVIDER ═══════════════ */
.dna-divider {
  background: var(--bg-dark);
  padding: 40px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.dna-strand {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dna-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: dnaRotate 3s ease-in-out infinite;
}

.dna-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.dna-node-left {
  animation: dnaNodeLeft 3s ease-in-out infinite;
}

.dna-node-right {
  animation: dnaNodeRight 3s ease-in-out infinite;
  background: var(--purple);
}

.dna-bridge {
  width: 2px;
  height: 16px;
  background: linear-gradient(var(--gold), var(--purple));
  opacity: 0.4;
}

@keyframes dnaNodeLeft {
  0%, 100% { transform: translateX(-6px) scale(1); opacity: 1; }
  50% { transform: translateX(6px) scale(0.6); opacity: 0.4; }
}

@keyframes dnaNodeRight {
  0%, 100% { transform: translateX(6px) scale(0.6); opacity: 0.4; }
  50% { transform: translateX(-6px) scale(1); opacity: 1; }
}

/* ═══════════════ LITTERS PAGE ═══════════════ */
.litters-intro {
  background: var(--bg-dark);
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.planning-step {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.planning-step:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.15);
}

.planning-step-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.planning-step-number svg {
  width: 100%;
  height: 100%;
}

.planning-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.planning-step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

.litters-section {
  background: var(--bg-deep);
}

.litter-timeline {
  display: grid;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.litter-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.litter-card:hover {
  border-color: rgba(212, 165, 116, 0.2);
}

.litter-card-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.litter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.litter-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.litter-confirmed {
  color: var(--green);
}

.litter-planned {
  color: var(--gold);
}

.litter-status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: badgePulse 2s ease-in-out infinite;
}

.litter-eta {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.litter-pairing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
}

.litter-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.litter-parent-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
}

.litter-parent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.litter-parent-tbd {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-hover);
}

.litter-parent-tbd svg {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
}

.litter-parent-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.litter-parent-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.litter-parent-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
}

.litter-parent-color {
  font-size: 13px;
  color: var(--text-dim);
}

.litter-x {
  width: 36px;
  height: 36px;
  color: var(--gold);
  flex-shrink: 0;
  animation: dnaRotate 4s ease-in-out infinite;
}

.litter-x svg {
  width: 100%;
  height: 100%;
}

@keyframes dnaRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.litter-predictions {
  text-align: center;
  margin-bottom: 20px;
}

.litter-predictions h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.color-chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.color-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-card-hover);
  border: 1px solid rgba(255,255,255,0.1);
}

.color-chip::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--chip-color);
}

.litter-cta {
  text-align: center;
}

.litter-waitlist {
  max-width: 600px;
  margin: 0 auto;
}

.litter-waitlist-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ═══════════════ ABOUT PAGE ═══════════════ */
.story-section {
  background: var(--bg-dark);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.story-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(10,10,18,0.9) 0%, transparent 100%);
  font-size: 13px;
  color: var(--gold-light);
  font-style: italic;
}

.story-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.2;
}

.story-content p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 16px;
}

.mission-section {
  background: var(--bg-deep);
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mission-quote-mark {
  margin-bottom: 16px;
}

.mission-quote-mark svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.mission-statement blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 3vw, 26px);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.7;
}

.values-section {
  background: var(--bg-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.15);
}

.value-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ═══════════════ STATS COUNTER ═══════════════ */
.stats-section {
  background: var(--bg-deep);
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-card {
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--gold);
  display: inline;
}

.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.about-cta-section, .coown-cta-section, .whelp-cta-section {
  background: var(--bg-deep);
}

.about-cta-card h2,
.coown-cta-card h2,
.whelp-cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  margin-bottom: 16px;
}

.about-cta-card p,
.coown-cta-card p,
.whelp-cta-card p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

/* ═══════════════ CO-OWNERSHIP PAGE ═══════════════ */
.coown-intro, .guardian-section {
  background: var(--bg-dark);
}

.coown-intro-content, .guardian-content {
  max-width: 800px;
  margin: 0 auto;
}

.coown-lead {
  font-size: 17px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 16px;
}

.coown-intro-content p,
.guardian-content p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.9;
}

.compare-section {
  background: var(--bg-deep);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.compare-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.compare-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 165, 116, 0.1);
}

.compare-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--bg-deep);
}

.compare-card-header {
  padding: 32px 28px 24px;
  text-align: center;
}

.compare-full {
  background: var(--bg-card-hover);
}

.compare-coown {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--bg-card) 100%);
}

.compare-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.compare-price {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 500;
}

.compare-list {
  list-style: none;
  padding: 24px 28px;
}

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

.compare-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.compare-card .btn {
  margin: 0 28px 28px;
  width: calc(100% - 56px);
  justify-content: center;
}

.guardian-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.guardian-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.guardian-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.guardian-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.guardian-icon svg {
  width: 100%;
  height: 100%;
}

.guardian-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.guardian-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ═══════════════ FAQ ACCORDION ═══════════════ */
.faq-section {
  background: var(--bg-deep);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ═══════════════ WHELPING PAGE ═══════════════ */
.heartbeat-divider {
  background: var(--bg-dark);
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.heartbeat-line {
  width: 100%;
  max-width: 600px;
  height: 60px;
}

.whelp-intro {
  background: var(--bg-dark);
}

.process-section {
  background: var(--bg-deep);
}

.process-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 60px;
}

.process-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--purple), var(--gold));
  opacity: 0.3;
}

.process-step {
  position: relative;
  padding: 0 0 48px 32px;
}

.process-marker {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  z-index: 1;
}

.process-marker svg {
  width: 20px;
  height: 20px;
}

.process-marker-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: markerPulse 3s ease-in-out infinite;
}

@keyframes markerPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.process-phase {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.process-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.process-content p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

.included-section {
  background: var(--bg-dark);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.included-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s ease;
}

.included-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  border-color: rgba(212, 165, 116, 0.15);
}

.included-card svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}

.included-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.included-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
}

.whelp-gallery {
  background: var(--bg-deep);
}

.whelp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.whelp-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}

.whelp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.whelp-gallery-item:hover img {
  transform: scale(1.05);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(212, 165, 116, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .hero-pillars {
    gap: 20px;
    flex-wrap: wrap;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .section-container {
    padding: 80px 20px;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .litter-pairing {
    flex-direction: column;
    gap: 16px;
  }

  .litter-x {
    transform: rotate(90deg);
  }

  .process-timeline {
    padding-left: 48px;
  }

  .process-marker {
    left: -48px;
    width: 40px;
    height: 40px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .whelp-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .puppy-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }
}
