/* ============================================================
   GOLDEN MEADOW RETRIEVERS — Master Stylesheet
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --primary-golden: #D9A441;
  --light-golden: #F5E6C8;
  --warm-cream: #FFFDF8;
  --forest-green: #2F4F3E;
  --soft-sage: #C9D7C5;
  --dark-text: #2D2D2D;
  --white: #FFFFFF;

  /* Extended Palette */
  --golden-dark: #B8872E;
  --golden-hover: #C4922E;
  --golden-glow: rgba(217, 164, 65, 0.18);
  --green-dark: #1E3428;
  --green-mid: #3D6B55;
  --text-muted: #6B7280;
  --text-secondary: #4B5563;
  --border-light: rgba(217, 164, 65, 0.22);
  --border-subtle: rgba(45, 45, 45, 0.1);
  --overlay-dark: rgba(30, 52, 40, 0.72);
  --cream-mid: #F0E4C4;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;

  /* Font Scale */
  --text-hero: clamp(44px, 5.5vw, 72px);
  --text-section: clamp(32px, 3.5vw, 48px);
  --text-subheading: clamp(20px, 2vw, 28px);
  --text-body: 18px;
  --text-small: 15px;

  /* Layout */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --card-radius: 24px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.18);
  --shadow-golden: 0 8px 32px rgba(217, 164, 65, 0.38);
  --shadow-green: 0 8px 32px rgba(47, 79, 62, 0.28);

  /* Transitions */
  --ease-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-pill: 100px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--dark-text);
  background-color: var(--warm-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--dark-text);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-section); }
h3 { font-size: var(--text-subheading); }
h4 { font-size: 22px; }
h5 { font-size: 18px; }

p { line-height: 1.75; }

em { font-style: italic; }

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

.text-golden { color: var(--primary-golden); }
.text-green  { color: var(--forest-green); }
.text-cream  { color: var(--warm-cream); }
.text-muted  { color: var(--text-muted); }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 19px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-golden);
  margin-bottom: 12px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-cream   { background-color: var(--warm-cream); }
.bg-light   { background-color: #F8F4EE; }
.bg-green   { background-color: var(--forest-green); }
.bg-golden  { background-color: var(--primary-golden); }
.bg-sage    { background-color: var(--soft-sage); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  transition: all var(--ease-med);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--ease-fast);
}

.btn:hover::after {
  background: rgba(255,255,255,0.08);
}

.btn-primary {
  background: var(--primary-golden);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(217, 164, 65, 0.4);
}

.btn-primary:hover {
  background: var(--golden-dark);
  box-shadow: var(--shadow-golden);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--forest-green);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-golden);
  border: 2px solid var(--primary-golden);
}

.btn-outline:hover {
  background: var(--primary-golden);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
}

.btn-outline-dark:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--dark-text);
  padding: 12px 0;
}

.btn-ghost:hover {
  color: var(--primary-golden);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--ease-med);
}

.nav.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-golden), var(--golden-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(217, 164, 65, 0.35);
}

.nav-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--ease-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest-green);
  background: var(--golden-glow);
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
  font-size: 14px;
  padding: 10px 22px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--ease-fast);
}

.nav-hamburger:hover {
  background: var(--golden-glow);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: all var(--ease-med);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--warm-cream);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 24px 28px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--ease-med);
  pointer-events: none;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  display: block;
}

.nav-mobile-links {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.nav-mobile-links li {
  border-bottom: 1px solid var(--border-subtle);
}

.nav-mobile-links a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark-text);
  transition: color var(--ease-fast);
}

.nav-mobile-links a:hover {
  color: var(--primary-golden);
}

/* Page offset for sticky nav */
body { padding-top: 80px; }

/* ============================================================
   7. FOOTER
   ============================================================ */
.footer {
  background: var(--forest-green);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand .logo-name {
  color: white;
}

.footer-brand .logo-tagline {
  color: rgba(255,255,255,0.6);
}

.footer-brand .nav-logo-icon {
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-golden);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 0;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-fast);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

.social-link:hover {
  background: var(--primary-golden);
  color: white;
  border-color: var(--primary-golden);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(217,164,65,0.4);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.footer-copy a {
  color: var(--primary-golden);
}

/* ============================================================
   8. PAGE HERO (shared across all pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-green);
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: transform 8s ease-out;
}

.page-hero:hover .page-hero-img {
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,52,40,0.8) 0%, rgba(47,79,62,0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 680px;
}

.page-hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-golden);
  margin-bottom: 14px;
  background: rgba(217,164,65,0.15);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(217,164,65,0.35);
}

.page-hero h1 {
  color: white;
  margin-bottom: 18px;
  font-size: clamp(36px, 4vw, 58px);
}

.page-hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  max-width: 520px;
}

/* ============================================================
   9. CARDS (shared)
   ============================================================ */
.card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease-med);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

/* ============================================================
   10. STATUS BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-available {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.badge-reserved {
  background: #FFFBEB;
  color: #92400E;
  border: 1px solid #FDE68A;
}

.badge-sold {
  background: #F3F4F6;
  color: #6B7280;
  border: 1px solid #D1D5DB;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* ============================================================
   11. HOME PAGE — HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 80px);
  background: url('../images/hero-home.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero > .container {
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: 0;
  padding-left: 40px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero-eyebrow svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-golden);
}

.hero h1 {
  font-size: var(--text-hero);
  line-height: 1.08;
  color: white;
  margin-bottom: 22px;
}

.hero h1 em {
  color: var(--primary-golden);
  font-style: italic;
}

.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.hero-actions .btn-outline-dark {
  color: white;
  border-color: rgba(255,255,255,0.7);
}

.hero-actions .btn-outline-dark:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-golden);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 4px;
}

.hero-stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  animation: bounceDown 2s ease-in-out infinite;
  z-index: 1;
}

.hero-scroll-hint svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

/* ============================================================
   12. HOME — WELCOME SECTION
   ============================================================ */
.welcome {
  background: white;
  padding: var(--section-padding);
}

.welcome-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  box-shadow: var(--shadow-lg);
}

.welcome-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--light-golden);
  transition: transform var(--ease-slow);
}

.welcome-img-wrap:hover img {
  transform: scale(1.04);
}

.welcome-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: var(--primary-golden);
  opacity: 0.15;
  z-index: -1;
}

.welcome-content .section-label {
  display: block;
  margin-bottom: 8px;
}

.welcome-content h2 {
  margin-bottom: 20px;
}

.welcome-content p {
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.welcome-highlights {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
}

.highlight-item svg {
  width: 22px;
  height: 22px;
  fill: var(--primary-golden);
  flex-shrink: 0;
}

/* ============================================================
   13. HOME — WHY CHOOSE US
   ============================================================ */
.features {
  background: var(--warm-cream);
  padding: var(--section-padding);
}

.feature-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease-med);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-golden), var(--golden-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease-med);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--light-golden), var(--cream-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--ease-med);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-golden), var(--golden-dark));
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--primary-golden);
  transition: fill var(--ease-fast);
}

.feature-card:hover .feature-icon svg {
  fill: white;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   14. HOME — AVAILABLE PUPPIES PREVIEW
   ============================================================ */
.puppies-preview {
  background: white;
  padding: var(--section-padding);
}

/* Puppy Card (shared with puppies page) */
.puppy-card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease-med);
  display: flex;
  flex-direction: column;
}

.puppy-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.puppy-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.puppy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--light-golden);
  transition: transform var(--ease-slow);
}

.puppy-card:hover .puppy-card-img img {
  transform: scale(1.07);
}

.puppy-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
}

.puppy-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.puppy-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.puppy-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 16px;
}

.puppy-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.puppy-meta-item svg {
  width: 14px;
  height: 14px;
  fill: var(--soft-sage);
}

.puppy-card-price {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 18px;
  margin-top: auto;
}

.puppy-card-price .price-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.puppies-preview-cta {
  text-align: center;
  margin-top: 52px;
}

/* ============================================================
   15. HOME — MEET OUR DOGS
   ============================================================ */
.meet-dogs {
  background: linear-gradient(160deg, #F8F4EE 0%, var(--warm-cream) 100%);
  padding: var(--section-padding);
}

.dog-card {
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all var(--ease-med);
}

.dog-card + .dog-card {
  margin-top: 32px;
}

.dog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.dog-card-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.dog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--light-golden);
  transition: transform var(--ease-slow);
}

.dog-card:hover .dog-card-img img {
  transform: scale(1.05);
}

.dog-card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--primary-golden);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dog-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dog-card-content .section-label {
  margin-bottom: 6px;
}

.dog-card-content h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.dog-age {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.dog-card-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.75;
}

.dog-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.dog-trait {
  background: var(--warm-cream);
  border: 1px solid var(--border-light);
  color: var(--forest-green);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
}

.dog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  padding: 18px;
}

.dog-stat-item {
  text-align: center;
}

.dog-stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary-golden);
}

.dog-stat-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   16. HOME — PROCESS TIMELINE
   ============================================================ */
.process {
  background: var(--forest-green);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.process .section-header {
  color: white;
}

.process .section-header h2 {
  color: white;
}

.process .section-header p {
  color: rgba(255,255,255,0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  position: relative;
  z-index: 1;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-golden), rgba(217,164,65,0.3));
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-golden);
  color: white;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(217,164,65,0.45);
  position: relative;
  z-index: 1;
  transition: all var(--ease-med);
}

.process-step:hover .process-step-num {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(217,164,65,0.55);
}

.process-step h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.65;
}

/* ============================================================
   17. HOME — TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-section {
  background: white;
  padding: var(--section-padding);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--ease-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 8px;
}

.testimonial-card {
  background: var(--warm-cream);
  border-radius: var(--card-radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.testimonial-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: var(--light-golden);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-golden);
}

.testimonial-quote {
  font-size: 12px;
  color: var(--primary-golden);
  margin-bottom: 16px;
}

.testimonial-quote svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 18px;
  color: var(--dark-text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-text);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease-fast);
}

.testimonial-dot.active {
  background: var(--primary-golden);
  transform: scale(1.3);
}

.testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease-fast);
  color: var(--dark-text);
}

.testimonials-arrow:hover {
  background: var(--primary-golden);
  border-color: var(--primary-golden);
  color: white;
  box-shadow: var(--shadow-golden);
}

.testimonials-arrow svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================================
   18. HOME — INSTAGRAM GALLERY
   ============================================================ */
.instagram {
  background: var(--warm-cream);
  padding: var(--section-padding);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--light-golden);
  transition: transform var(--ease-slow);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 79, 62, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-med);
}

.insta-overlay svg {
  width: 28px;
  height: 28px;
  fill: white;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--ease-med);
}

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

.insta-item:hover .insta-overlay {
  background: rgba(47, 79, 62, 0.5);
}

.insta-item:hover .insta-overlay svg {
  opacity: 1;
  transform: scale(1);
}

.insta-handle {
  text-align: center;
  margin-top: 28px;
  font-size: 16px;
  color: var(--text-muted);
}

.insta-handle a {
  color: var(--primary-golden);
  font-weight: 600;
}

/* ============================================================
   19. HOME — FINAL CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--green-dark) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(217,164,65,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217,164,65,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section .section-label {
  color: var(--primary-golden);
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  max-width: 600px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   20. ABOUT PAGE
   ============================================================ */
.about-story {
  background: white;
  padding: var(--section-padding);
}

.about-story .welcome-img-wrap {
  aspect-ratio: 3 / 4;
  background: var(--warm-cream);
}

.about-story .welcome-img-wrap img {
  object-fit: contain;
}

.about-philosophy {
  background: var(--warm-cream);
  padding: var(--section-padding);
}

.philosophy-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease-med);
  position: relative;
  overflow: hidden;
}

.philosophy-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-golden), var(--forest-green));
  transform: scaleX(0);
  transition: transform var(--ease-med);
}

.philosophy-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.philosophy-card:hover::after {
  transform: scaleX(1);
}

.philosophy-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--light-golden), var(--cream-mid));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease-med);
}

.philosophy-card:hover .philosophy-icon {
  background: linear-gradient(135deg, var(--primary-golden), var(--golden-dark));
}

.philosophy-icon svg {
  width: 38px;
  height: 38px;
  fill: var(--primary-golden);
  transition: fill var(--ease-fast);
}

.philosophy-card:hover .philosophy-icon svg {
  fill: white;
}

.philosophy-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.philosophy-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.meet-family {
  background: white;
  padding: var(--section-padding);
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.family-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.family-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--light-golden);
  display: block;
  transition: transform var(--ease-slow);
}

.family-photo:hover img {
  transform: scale(1.05);
}

.family-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(0deg, rgba(30,52,40,0.85) 0%, transparent 100%);
  color: white;
}

.family-photo-caption strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.family-photo-caption span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.facilities {
  background: var(--warm-cream);
  padding: var(--section-padding);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.facility-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.facility-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--light-golden);
  display: block;
  transition: transform var(--ease-slow);
}

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

.facility-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: white;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-text);
  box-shadow: var(--shadow-sm);
}

.certs {
  background: white;
  padding: 80px 0;
}

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

.cert-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--card-radius);
  background: var(--warm-cream);
  border: 1px solid var(--border-light);
  transition: all var(--ease-med);
}

.cert-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
  border-color: var(--primary-golden);
}

.cert-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary-golden), var(--golden-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.cert-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.cert-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   21. PUPPIES PAGE
   ============================================================ */
.puppies-page {
  background: var(--warm-cream);
  padding: var(--section-padding);
}

.filters-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease-fast);
  background: white;
  color: var(--text-secondary);
  border: 2px solid transparent;
  box-shadow: var(--shadow-xs);
}

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

.filter-btn.active {
  background: var(--primary-golden);
  color: white;
  border-color: var(--primary-golden);
  box-shadow: var(--shadow-golden);
}

.puppies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.puppy-card.hidden {
  display: none;
}

/* Puppy Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 52, 40, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-med);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: white;
  border-radius: var(--card-radius);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(24px) scale(0.97);
  transition: transform var(--ease-med);
}

.modal-overlay.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--warm-cream);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease-fast);
  color: var(--dark-text);
}

.modal-close:hover {
  background: var(--light-golden);
  color: var(--forest-green);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.modal-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}

.modal-gallery {
  padding: 0;
}

.modal-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--light-golden);
  display: block;
}

.modal-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
}

.modal-thumb {
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--light-golden);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--ease-fast);
}

.modal-thumb.active,
.modal-thumb:hover {
  opacity: 1;
}

.modal-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-name {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--dark-text);
  margin-bottom: 0;
}

.modal-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-detail {
  background: var(--warm-cream);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}

.modal-detail label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.modal-detail span {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
}

.modal-personality {
  background: var(--warm-cream);
  border-radius: var(--radius-md);
  padding: 18px;
}

.modal-personality h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.modal-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-trait {
  background: white;
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--forest-green);
  font-weight: 500;
}

.modal-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border-subtle);
}

.modal-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--forest-green);
}

/* ============================================================
   22. FUTURE LITTERS PAGE
   ============================================================ */
.litters-page {
  background: var(--warm-cream);
  padding: var(--section-padding);
}

.litter-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 28px;
  transition: all var(--ease-med);
  position: relative;
  overflow: hidden;
}

.litter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-golden), var(--forest-green));
}

.litter-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.litter-parent-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 4px solid var(--light-golden);
  box-shadow: var(--shadow-sm);
  background: var(--warm-cream);
}

.litter-parent-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--warm-cream);
}

.litter-parent strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--dark-text);
  margin-bottom: 4px;
}

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

.litter-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.litter-heart {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9B9B, #FF6B6B);
  display: flex;
  align-items: center;
  justify-content: center;
}

.litter-heart svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.litter-divider span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.litter-details h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.litter-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.litter-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.litter-info-item svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-golden);
  flex-shrink: 0;
}

.litter-availability {
  font-size: 13px;
  font-weight: 700;
  color: var(--forest-green);
  background: rgba(201, 215, 197, 0.4);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.litter-availability::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest-green);
}

/* Reservation Form */
.reservation-section {
  background: white;
  padding: var(--section-padding);
}

.reservation-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--warm-cream);
  border-radius: var(--card-radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   23. TESTIMONIALS PAGE
   ============================================================ */
.testimonials-page {
  background: var(--warm-cream);
  padding: var(--section-padding);
}

.testimonials-masonry {
  columns: 3;
  column-gap: 24px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
  background: white;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease-med);
}

.masonry-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.masonry-item-img {
  width: 100%;
  overflow: hidden;
}

.masonry-item-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  background: var(--light-golden);
  transition: transform var(--ease-slow);
}

.masonry-item:hover .masonry-item-img img {
  transform: scale(1.04);
}

.masonry-item-body {
  padding: 24px;
}

.masonry-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.masonry-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-golden);
}

.masonry-item-body p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.masonry-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.masonry-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--light-golden);
}

.masonry-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--light-golden);
}

.masonry-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-text);
}

.masonry-author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   24. CONTACT PAGE
   ============================================================ */
.contact-page {
  background: var(--warm-cream);
  padding: var(--section-padding);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-golden), var(--golden-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.contact-detail-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 2px;
}

.contact-detail-text span {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-hours {
  background: white;
  border-radius: var(--card-radius);
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.contact-hours h4 {
  font-size: 17px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-hours h4 svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-golden);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.hours-row span:first-child {
  color: var(--text-muted);
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--dark-text);
}

/* Contact Form */
.contact-form-wrap {
  background: white;
  border-radius: var(--card-radius);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Forms (shared) */
.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 7px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--dark-text);
  background: var(--warm-cream);
  transition: all var(--ease-fast);
  outline: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-golden);
  background: white;
  box-shadow: 0 0 0 4px var(--golden-glow);
}

textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success .success-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.form-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #065F46;
}

.form-success p {
  color: var(--text-muted);
}

/* Map */
.map-section {
  height: 420px;
  background: var(--soft-sage);
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #C9D7C5 0%, #A8C4A0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--forest-green);
}

.map-placeholder svg {
  width: 56px;
  height: 56px;
  fill: var(--primary-golden);
}

.map-placeholder h4 {
  font-size: 22px;
  color: var(--forest-green);
}

.map-placeholder p {
  font-size: 16px;
  color: var(--green-mid);
}

/* ============================================================
   25. SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================================
   26. RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .hero-float-badge-2 { right: 0; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .dog-card {
    grid-template-columns: 1fr;
  }

  .dog-card-img {
    min-height: 300px;
  }

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

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .process-grid::before { display: none; }

  .testimonial-card {
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 32px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .litter-card {
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   27. RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  body { padding-top: 80px; }

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

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 60px 0 80px;
    min-height: 90vh;
    background-position: 70% center;
  }

  .hero::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.30) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    max-width: 100%;
    text-align: center;
  }

  .hero-eyebrow,
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-float-badge-2 {
    right: 16px;
    top: 16px;
  }

  /* Sections */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Testimonials */
  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .testimonial-img {
    max-height: 200px;
    aspect-ratio: 16/9;
  }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /* Puppies */
  .puppies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  /* Modal */
  .modal-body {
    grid-template-columns: 1fr;
  }

  /* Litters */
  .litter-card {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .litter-divider {
    flex-direction: row;
    justify-content: center;
  }

  /* Testimonials masonry */
  .testimonials-masonry {
    columns: 1;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .reservation-form-wrap {
    padding: 28px 24px;
  }

  /* Family grid */
  .family-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Certs */
  .certs-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Facilities */
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  /* Page hero */
  .page-hero {
    min-height: 55vh;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .dog-card-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .puppies-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .certs-grid,
  .family-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 38px;
  }

  .hero-float-badge {
    display: none;
  }

  .hero-float-badge-2 {
    display: none;
  }

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

/* ============================================================
   COPYRIGHT WATERMARK & PROTECTION
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='180'%3E%3Ctext x='50%25' y='50%25' dominant-baseline='middle' text-anchor='middle' font-family='Arial%2C sans-serif' font-size='15' font-weight='600' fill='rgba(217%2C164%2C65%2C0.10)' transform='rotate(-30 210 90)'%3EMichelle%27s Web Design %C2%A9 2026%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 99998;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

.copyright-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: rgba(30, 52, 40, 0.96);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.copyright-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   FOOTER DESIGNER CREDIT
   ============================================================ */
.footer-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.04em;
}

.footer-credit span {
  color: var(--primary-golden);
  font-weight: 600;
}

/* ============================================================
   DEMO PREVIEW BANNER
   ============================================================ */
.demo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--green-dark);
  border-top: 1px solid rgba(217, 164, 65, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 11px 24px;
  font-family: var(--font-body);
}

.demo-banner-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.demo-banner-text svg {
  flex-shrink: 0;
  fill: var(--primary-golden);
}

.demo-banner-text strong {
  color: var(--primary-golden);
  font-weight: 600;
}

.demo-banner-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--primary-golden);
  color: var(--green-dark) !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.demo-banner-btn:hover {
  background: var(--golden-hover);
  transform: translateY(-1px);
}

/* Push page content above the banner */
body {
  padding-bottom: 52px;
}

/* Copyright toast sits above the banner */
.copyright-toast {
  bottom: 72px !important;
}

@media (max-width: 600px) {
  .demo-banner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px;
  }
  .demo-banner-text {
    font-size: 12px;
    text-align: center;
  }
}
