/* ==========================================================================
   Puddin' Pups — Premium Yorkshire Terrier Breeder Design System
   Refined Heritage aesthetic: warm gold accents, embossed cards, diagonal
   section dividers, herringbone patterns, ribbon badges, certificate seals.
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables (Design Tokens)
   -------------------------------------------------------------------------- */
:root {

  /* Primary Colors — Golden Amber (Yorkie Coat Gold) */
  --color-primary-50: #fdf8ed;
  --color-primary-100: #faecc7;
  --color-primary-200: #f5d88f;
  --color-primary-300: #efc157;
  --color-primary-400: #e5a822;
  --color-primary-500: #b8860b;
  --color-primary-600: #9a7009;
  --color-primary-700: #7c5a07;
  --color-primary-800: #5e4405;
  --color-primary-900: #3f2e03;

  /* Secondary Colors — Deep Chocolate Brown (Yorkie Dark Coat) */
  --color-secondary-50: #faf5f0;
  --color-secondary-100: #f0e4d5;
  --color-secondary-200: #dfc5a6;
  --color-secondary-300: #c9a077;
  --color-secondary-400: #a87648;
  --color-secondary-500: #5c3317;
  --color-secondary-600: #4d2a13;
  --color-secondary-700: #3e220f;
  --color-secondary-800: #2f190b;
  --color-secondary-900: #201107;

  /* Accent Colors — Warm Tan / Cream */
  --color-accent-50: #fdf6ef;
  --color-accent-100: #f9e8d5;
  --color-accent-200: #f2d0aa;
  --color-accent-300: #e8b57f;
  --color-accent-400: #d4a574;
  --color-accent-500: #c08b56;
  --color-accent-600: #a97442;

  /* Background Colors */
  --bg-cream: #fdf8ed;
  --bg-warm-white: #fefdfb;
  --bg-soft-gold: #fdf8ed;
  --color-cream: #fdf8ed;
  --bg-dark: #2f190b;
  --bg-darker: #201107;

  /* Text Colors */
  --color-text-primary: #1c1917;
  --color-text-secondary: #44403c;
  --color-text-muted: #78716c;
  --color-text-light: #a8a29e;
  --color-text-white: #ffffff;

  /* Neutral Colors — Warm Gray */
  --color-neutral-50: #fafaf9;
  --color-neutral-100: #f5f5f4;
  --color-neutral-200: #e7e5e4;
  --color-neutral-300: #d6d3d1;
  --color-neutral-400: #a8a29e;
  --color-neutral-500: #78716c;
  --color-neutral-600: #57534e;
  --color-neutral-700: #44403c;
  --color-neutral-800: #292524;
  --color-neutral-900: #1c1917;

  /* Border Colors */
  --color-border: #e7e5e4;
  --color-border-light: #f5f5f4;
  --color-border-gold: #f5d88f;
  --color-border-dark: #44403c;

  /* Functional Colors */
  --color-success: #16a34a;
  --color-warning: #d97706;
  --color-error: #dc2626;
  --color-info: #2563eb;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #b8860b 0%, #9a7009 100%);
  --gradient-secondary: linear-gradient(135deg, #5c3317 0%, #4d2a13 100%);
  --gradient-warm: linear-gradient(135deg, #b8860b 0%, #5c3317 100%);
  --gradient-soft: linear-gradient(180deg, #fdf8ed 0%, #faf5f0 100%);
  --gradient-hero: linear-gradient(160deg, #fdf8ed 0%, #f9e8d5 40%, #faecc7 100%);
  --gradient-gold: linear-gradient(135deg, #efc157 0%, #b8860b 100%);
  --gradient-dark: linear-gradient(160deg, #2f190b 0%, #201107 100%);
  --gradient-diagonal: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-accent-50) 100%);

  /* Warm Glow Effects */
  --glow-gold: 0 0 30px rgba(184, 134, 11, 0.15);
  --glow-gold-strong: 0 0 50px rgba(184, 134, 11, 0.25);
  --glow-warm: 0 0 40px rgba(239, 193, 87, 0.2);

  /* Typography */
  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-accent: 'Playfair Display', Georgia, serif;

  /* Font Sizes (Fluid Typography) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: clamp(1.5rem, 2vw + 0.5rem, 1.875rem);
  --text-4xl: clamp(1.75rem, 2.5vw + 0.5rem, 2.25rem);
  --text-5xl: clamp(2rem, 3vw + 0.5rem, 3rem);
  --text-6xl: clamp(2.5rem, 4vw + 0.5rem, 3.75rem);
  --text-7xl: clamp(3rem, 5vw + 0.5rem, 4.5rem);

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  /* Shadows — Warm Theme */
  --shadow-sm: 0 1px 3px rgba(92, 51, 23, 0.06);
  --shadow-md: 0 4px 12px rgba(92, 51, 23, 0.08), 0 1px 3px rgba(92, 51, 23, 0.06);
  --shadow-lg: 0 12px 24px rgba(92, 51, 23, 0.1), 0 4px 8px rgba(92, 51, 23, 0.06);
  --shadow-xl: 0 20px 40px rgba(92, 51, 23, 0.12), 0 8px 16px rgba(92, 51, 23, 0.06);
  --shadow-2xl: 0 32px 64px rgba(92, 51, 23, 0.16);
  --shadow-emboss: 0 2px 0 rgba(255, 255, 255, 0.7), 0 4px 12px rgba(92, 51, 23, 0.1);
  --shadow-gold: 0 4px 20px rgba(184, 134, 11, 0.15);
  --shadow-glow-primary: 0 0 40px rgba(184, 134, 11, 0.2);
  --shadow-glow-secondary: 0 0 40px rgba(92, 51, 23, 0.2);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
}

/* --------------------------------------------------------------------------
   Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background-color: var(--bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary-600);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-700);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-accent);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-neutral-900);
}

.text-display {
  font-size: var(--text-7xl);
  font-family: var(--font-family-accent);
  font-weight: var(--font-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-headline {
  font-size: var(--text-5xl);
  font-family: var(--font-family-accent);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
}

.text-title {
  font-size: var(--text-3xl);
  font-family: var(--font-family-accent);
  font-weight: var(--font-bold);
}

.text-subtitle {
  font-size: var(--text-xl);
  font-weight: var(--font-normal);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.text-body-lg {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.text-accent {
  font-family: var(--font-family-accent);
  font-style: italic;
  font-weight: 400;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-light {
  color: var(--color-text-light);
}

.text-primary {
  color: var(--color-primary-600);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gold underline decorator — use after headings */
.gold-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  margin-top: var(--space-3);
}

.gold-underline-center {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  margin: var(--space-3) auto 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

.section-lg {
  padding: var(--space-32) 0;
}

.section-cream {
  background: var(--bg-cream);
}

.section-white {
  background: white;
}

.section-warm {
  background: var(--gradient-diagonal);
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--color-neutral-200);
}

/* Angled section divider — top */
.section-angled-top {
  position: relative;
}

.section-angled-top::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* Angled section divider — bottom */
.section-angled-bottom {
  position: relative;
}

.section-angled-bottom::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
  z-index: 1;
}

/* Gold accent line separator */
.section-divider {
  position: relative;
}

.section-divider::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  margin: var(--space-16) auto 0;
}

/* Warm ambient glow overlay */
.pattern-overlay {
  position: relative;
}

.pattern-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 15% 20%, rgba(239, 193, 87, 0.12), transparent 70%),
    radial-gradient(ellipse 500px 400px at 85% 70%, rgba(212, 165, 116, 0.1), transparent 70%),
    radial-gradient(ellipse 400px 300px at 50% 50%, rgba(184, 134, 11, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Gold sparkle dots — position with inline styles */
.gold-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-300);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
  animation: sparkle 4s ease-in-out infinite;
}

.gold-sparkle-lg {
  width: 10px;
  height: 10px;
  opacity: 0.2;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.text-center {
  text-align: center;
}

/* Section header — a centered title block with optional gold line */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

/* --------------------------------------------------------------------------
   Grid Systems
   -------------------------------------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.grid-responsive-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.grid-responsive-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.grid-responsive-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .grid-4,
  .grid-responsive-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-responsive-2,
  .grid-responsive-3,
  .grid-responsive-4 {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-family-base);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--color-primary-600);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl), var(--glow-gold-strong);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: white;
  border-color: var(--color-secondary-600);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-600);
  border: 2px solid var(--color-primary-300);
}

.btn-outline:hover {
  background: var(--color-primary-50);
  border-color: var(--color-primary-500);
  color: var(--color-primary-700);
}

.btn-ghost {
  background: transparent;
  color: var(--color-neutral-600);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--color-neutral-100);
  color: var(--color-neutral-800);
}

.btn-white {
  background: white;
  color: var(--color-primary-700);
  border-color: white;
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.btn-xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-xl);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-full {
  display: flex;
  width: 100%;
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   Labels & Badges
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-primary {
  background: var(--color-primary-100);
  color: var(--color-primary-700);
}

.badge-secondary {
  background: var(--color-secondary-100);
  color: var(--color-secondary-700);
}

.badge-accent {
  background: var(--color-accent-100);
  color: var(--color-accent-600);
}

.badge-gold {
  background: var(--gradient-gold);
  color: white;
}

.badge-success {
  background: #dcfce7;
  color: #15803d;
}

.badge-lg {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

/* Ribbon badge — folded corner effect for premium feel */
.ribbon {
  position: absolute;
  top: var(--space-4);
  left: 0;
  background: var(--gradient-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-4) var(--space-1) var(--space-3);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
}

.label {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-sm);
  color: var(--color-primary-700);
  background: var(--color-primary-50);
}

/* --------------------------------------------------------------------------
   Cards — Warm Elegance
   -------------------------------------------------------------------------- */
.card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-highlighted {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border: 2px solid var(--color-border-gold);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card-highlighted:hover {
  box-shadow: var(--shadow-xl), var(--glow-gold);
  transform: translateY(-3px);
}

.card-dark {
  background: var(--gradient-dark);
  border-radius: var(--radius-xl);
  color: var(--color-neutral-200);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card-dark:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

/* Accent card — warm shadow, no glassmorphism */
.accent-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-emboss);
  border: 1px solid var(--color-primary-100);
  overflow: hidden;
  transition: all var(--transition-base);
}

.accent-card:hover {
  box-shadow: var(--shadow-lg), var(--glow-gold);
  transform: translateY(-3px);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary-50);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary-100);
}

.card-title {
  font-family: var(--font-family-accent);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-neutral-900);
  margin-bottom: var(--space-2);
}

.card-description {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* --------------------------------------------------------------------------
   Puppy Cards
   -------------------------------------------------------------------------- */
.puppy-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
}

.puppy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
  border-color: var(--color-border-gold);
}

.puppy-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.puppy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.puppy-card:hover .puppy-card-image img {
  transform: scale(1.06);
}

.puppy-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
}

.puppy-card-content {
  padding: var(--space-5);
}

.puppy-badge {
  position: absolute;
  top: var(--space-3);
  left: 0;
  background: var(--gradient-primary);
  color: white;
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  padding: var(--space-1) var(--space-4) var(--space-1) var(--space-3);
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.favorite-btn {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-neutral-400);
  box-shadow: var(--shadow-sm);
}

.favorite-btn:hover {
  color: var(--color-primary-500);
  border-color: var(--color-primary-200);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card-popular {
  background: white;
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-primary-400);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.pricing-card-popular:hover {
  box-shadow: var(--shadow-xl), var(--glow-gold-strong);
  transform: translateY(-4px);
}

.pricing-header {
  margin-bottom: var(--space-6);
}

.pricing-title {
  font-family: var(--font-family-accent);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
}

.pricing-price {
  font-family: var(--font-family-accent);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--color-primary-600);
}

.pricing-price .currency {
  font-size: var(--text-2xl);
}

.pricing-period {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
  text-align: left;
}

.pricing-features li {
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border-bottom: 1px solid var(--color-border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   Parent Dog Cards
   -------------------------------------------------------------------------- */
.parent-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.parent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
  border-color: var(--color-border-gold);
}

.parent-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.parent-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.parent-card:hover .parent-card-image img {
  transform: scale(1.05);
}

.parent-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(47, 25, 11, 0.3), transparent);
  pointer-events: none;
}

.parent-card-content {
  padding: var(--space-6);
}

/* --------------------------------------------------------------------------
   Testimonial Cards
   -------------------------------------------------------------------------- */
.testimonial-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--space-8);
  right: var(--space-8);
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 0 0 var(--radius-full) var(--radius-full);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.testimonial-quote {
  font-family: var(--font-family-accent);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-neutral-700);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-primary-200);
}

.testimonial-name {
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
}

.testimonial-detail {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: var(--color-primary-400);
}

/* --------------------------------------------------------------------------
   Reason Cards (15 Reasons Feature)
   -------------------------------------------------------------------------- */
.reason-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-gold);
}

.reason-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-gold);
  transform: translateX(4px);
}

.reason-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-primary-50);
  color: var(--color-primary-700);
  font-family: var(--font-family-accent);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary-200);
}

/* --------------------------------------------------------------------------
   Breed Info Cards
   -------------------------------------------------------------------------- */
.breed-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.breed-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-gold);
}

.breed-card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary-50);
  border: 2px solid var(--color-primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.breed-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.breed-stat:last-child {
  border-bottom: none;
}

.breed-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-medium);
}

.breed-stat-value {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
}

/* --------------------------------------------------------------------------
   Gallery / Photo Showcase
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(47, 25, 11, 0.4), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  color: white;
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  transform: translateY(100%);
  transition: transform var(--transition-base);
  z-index: 1;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Lightbox (Photo Viewer)
   -------------------------------------------------------------------------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-border-gold);
}

.faq-item.active {
  border-color: var(--color-primary-300);
  box-shadow: var(--shadow-sm), var(--glow-gold);
}

.faq-question {
  width: 100%;
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  font-family: var(--font-family-base);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.faq-question:hover {
  color: var(--color-primary-700);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-primary-500);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-neutral-700);
  margin-bottom: var(--space-2);
}

.form-input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-lg);
  font-family: var(--font-family-base);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: white;
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px var(--color-primary-100);
}

.form-input::placeholder {
  color: var(--color-text-light);
}

.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-lg);
  font-family: var(--font-family-base);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: white;
  cursor: pointer;
  transition: all var(--transition-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

.form-select:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px var(--color-primary-100);
}

.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-neutral-300);
  border-radius: var(--radius-lg);
  font-family: var(--font-family-base);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: white;
  min-height: 120px;
  resize: vertical;
  transition: all var(--transition-fast);
}

.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary-500);
  box-shadow: 0 0 0 3px var(--color-primary-100);
}

.form-helper {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  margin-top: var(--space-1);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-family-accent);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

/* --------------------------------------------------------------------------
   Trust Badges / Certifications
   -------------------------------------------------------------------------- */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
  max-width: 140px;
}

.trust-badge-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--color-primary-300);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-50);
  position: relative;
}

/* Seal effect — double ring */
.trust-badge-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed var(--color-primary-200);
}

.trust-badge-text {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Process Steps / Adoption Journey
   -------------------------------------------------------------------------- */
.process-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
  padding: 0 var(--space-4);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-primary-50);
  color: var(--color-primary-700);
  font-family: var(--font-family-accent);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  border: 3px solid var(--color-primary-300);
  transition: all var(--transition-base);
}

.process-step:hover .step-number {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--color-primary-500);
  box-shadow: var(--shadow-gold);
}

.step-content h3 {
  font-family: var(--font-family-accent);
  margin-bottom: var(--space-2);
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-200), var(--color-primary-400), var(--color-primary-200));
  margin-top: 28px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-stepper { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; margin-top: 0; background: linear-gradient(180deg, var(--color-primary-200), var(--color-primary-400), var(--color-primary-200)); }
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.section-cta {
  position: relative;
  background: var(--gradient-warm);
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,0.08) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -15px, -30px 15px;
  pointer-events: none;
}

.section-cta-box {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-16) 0;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-full {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

/* Subtle corner ornaments for hero */
.hero-full::before,
.hero-full::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-primary-200);
  opacity: 0.2;
  pointer-events: none;
}

.hero-full::before {
  top: 40px;
  left: 40px;
  border-right: none;
  border-bottom: none;
}

.hero-full::after {
  bottom: 40px;
  right: 40px;
  border-left: none;
  border-top: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary-100);
  color: var(--color-primary-700);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--font-family-accent);
  font-size: var(--text-7xl);
  font-weight: var(--font-bold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero-description {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  max-width: 560px;
  margin-bottom: var(--space-8);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 4px solid white;
}

/* Gold corner frame on hero image */
.hero-image-frame {
  position: relative;
  display: inline-block;
}

.hero-image-frame::before,
.hero-image-frame::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid var(--color-primary-400);
  pointer-events: none;
  z-index: 2;
}

.hero-image-frame::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.hero-image-frame::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

/* --------------------------------------------------------------------------
   Heritage Badge
   -------------------------------------------------------------------------- */
.heritage-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: white;
  border: 2px solid var(--color-primary-300);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-emboss);
}

.heritage-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.heritage-badge-text {
  font-family: var(--font-family-accent);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-primary-700);
}

/* --------------------------------------------------------------------------
   Navigation Header
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 237, 0.9);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
  padding: var(--space-4) 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3) 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar-link {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--color-primary-600);
}

.navbar-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-secondary-800);
  color: var(--color-neutral-300);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.footer-navbar-name {
  font-family: var(--font-family-accent);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-primary-400);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-neutral-400);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neutral-400);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  border-color: var(--color-primary-500);
  color: var(--color-primary-400);
  background: rgba(184, 134, 11, 0.1);
}

.footer-column h4 {
  color: white;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: var(--color-neutral-400);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--color-neutral-500);
}

.footer-badges {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.footer-badge {
  font-size: var(--text-xs);
  color: var(--color-neutral-500);
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: var(--text-5xl);
  }
}

@media (max-width: 768px) {
  .text-display { font-size: var(--text-5xl); }
  .text-headline { font-size: var(--text-4xl); }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-full::before,
  .hero-full::after {
    display: none;
  }

  .section {
    padding: var(--space-12) 0;
  }

  .section-lg {
    padding: var(--space-16) 0;
  }

  .section-angled-top::before,
  .section-angled-bottom::after {
    height: 40px;
    top: -20px;
    bottom: -20px;
  }

  .trust-badges {
    gap: var(--space-6);
  }
}

@media (max-width: 640px) {
  .container,
  .container-narrow,
  .container-wide {
    padding: 0 var(--space-4);
  }

  .btn-xl {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-lg);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-image-frame::before,
  .hero-image-frame::after {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-sm { gap: var(--space-2); }
.gap-md { gap: var(--space-4); }
.gap-lg { gap: var(--space-6); }
.gap-xl { gap: var(--space-8); }

.mt-sm { margin-top: var(--space-2); }
.mt-md { margin-top: var(--space-4); }
.mt-lg { margin-top: var(--space-8); }
.mt-xl { margin-top: var(--space-12); }
.mt-2xl { margin-top: var(--space-16); }

.mb-sm { margin-bottom: var(--space-2); }
.mb-md { margin-bottom: var(--space-4); }
.mb-lg { margin-bottom: var(--space-8); }
.mb-xl { margin-bottom: var(--space-12); }
.mb-2xl { margin-bottom: var(--space-16); }

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
.fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(184, 134, 11, 0); }
}

.animate-fade-in {
  animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-right {
  animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-gold-pulse {
  animation: goldPulse 2s infinite;
}

/* Shimmer effect for gold text accents */
.shimmer-gold {
  background: linear-gradient(
    110deg,
    var(--color-primary-600) 0%,
    var(--color-primary-300) 40%,
    var(--color-primary-600) 60%,
    var(--color-primary-300) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-full::before,
  .hero-full::after {
    display: none;
  }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  .section {
    padding: 1rem 0;
  }

  .card,
  .puppy-card,
  .testimonial-card,
  .reason-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}
