/* ========================================
   Morning Fire Retrievers — Theme
   Dark sunset palette matching original site
   ======================================== */

:root {
  --dark-950: #1a1210;
  --dark-900: #231a15;
  --dark-800: #2e2119;
  --dark-700: #3d2e22;
  --dark-600: #54402f;
  --ember-700: #8b3a1a;
  --ember-600: #a84820;
  --ember-500: #c85a28;
  --coral-500: #d4714a;
  --coral-400: #e0885f;
  --amber-600: #b8861e;
  --amber-500: #cfa033;
  --amber-400: #dab34a;
  --amber-300: #e6c96e;
  --amber-200: #f0d88a;
  --amber-100: #faf0d4;
  --cream: #faf7f2;
  --cream-warm: #f4ede3;
  --cream-dark: #ebe3d6;
  --text-primary: #2a1e17;
  --text-secondary: #5a4535;
  --text-muted: #8a7565;
  --text-light: #f0e6da;
  --text-on-dark: #f5efe8;
  --border-light: #ddd3c5;
  --border-dark: #3a2a1e;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(26, 18, 16, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 18, 16, 0.12);
  --shadow-lg: 0 12px 40px rgba(26, 18, 16, 0.18);
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fire-500: #c85a28;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-primary);
  background: var(--dark-950);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber-400); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--amber-300); }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.3; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
.prose p { margin-bottom: 1.2em; }
.prose p:last-child { margin-bottom: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(180deg, #c9a84c, #a08030);
  color: var(--white);
  border: 1px solid #8a6e28;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-gold:hover {
  background: linear-gradient(180deg, #dab34a, #b8961e);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207, 160, 51, 0.35);
}
.btn-primary {
  background: linear-gradient(180deg, #c9a84c, #a08030);
  color: var(--white);
  border: 1px solid #8a6e28;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #dab34a, #b8961e);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(207, 160, 51, 0.35);
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.75);
  color: var(--white);
}
.btn-outline-dark {
  border-color: var(--border-light);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--cream-warm);
  border-color: var(--amber-500);
  color: var(--text-primary);
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.92rem;
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}
.btn-block {
  display: block;
  width: 100%;
}

/* ========================================
   Header
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 18, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: none;
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-600), var(--amber-400), var(--amber-200), var(--amber-400), var(--amber-600), transparent);
  background-size: 200% 100%;
  animation: header-glow 6s linear infinite;
}
@keyframes header-glow {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.65rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--cream);
  flex-shrink: 0;
}
.logo-link:hover { color: var(--amber-400); }
.logo-img { height: 50px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.main-nav { display: flex; align-items: center; gap: 0.15rem; flex-wrap: nowrap; }
.nav-link {
  padding: 0.45rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-on-dark);
  border-radius: 5px;
  transition: all 0.25s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--amber-400); background: rgba(255,255,255,0.06); }

.header-contact {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.4rem clamp(1.25rem, 4vw, 2.5rem);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-on-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  opacity: 0.85;
}
.header-contact a { color: var(--text-on-dark); }
.header-contact a:hover { color: var(--amber-400); }
.header-contact a.litter-link {
  color: var(--amber-400);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.header-contact a.litter-link:hover { color: var(--amber-300); }
.header-divider { opacity: 0.3; }

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.dropdown-arrow {
  font-size: 0.65rem;
  transition: transform 0.25s;
}
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(26, 18, 16, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(207, 160, 51, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-dropdown-item:hover {
  color: var(--amber-400);
  background: rgba(255,255,255,0.06);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  position: absolute;
  left: 4px;
}
.hamburger { top: 15px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ========================================
   Hero — compact banner at top
   ======================================== */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem) 2rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 16, 0.1);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.35;
  text-shadow:
    -2px -2px 0 rgba(0,0,0,0.8),
     2px -2px 0 rgba(0,0,0,0.8),
    -2px  2px 0 rgba(0,0,0,0.8),
     2px  2px 0 rgba(0,0,0,0.8),
     0    0  12px rgba(0,0,0,0.6);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--amber-500);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.8vw, 1.6rem);
  color: var(--amber-300);
  font-weight: 700;
  font-style: italic;
  text-shadow:
    -2px -2px 0 rgba(0,0,0,0.8),
     2px -2px 0 rgba(0,0,0,0.8),
    -2px  2px 0 rgba(0,0,0,0.8),
     2px  2px 0 rgba(0,0,0,0.8),
     0    0  10px rgba(0,0,0,0.5);
}

/* ========================================
   Homepage Body — dark background
   ======================================== */
.homepage-body {
  position: relative;
  background: transparent;
  color: var(--white);
}
.homepage-body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    url('/images/hero-bg.webp') center 55% / cover no-repeat,
    url('/images/hero-bg.jpg') center 55% / cover no-repeat,
    var(--dark-950);
}
.homepage-body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(26, 18, 16, 0.2);
  pointer-events: none;
}
.homepage-body > * {
  position: relative;
  z-index: 1;
}
.homepage-body {
  text-shadow:
    -1px -1px 0 rgba(0,0,0,0.6),
     1px -1px 0 rgba(0,0,0,0.6),
    -1px  1px 0 rgba(0,0,0,0.6),
     1px  1px 0 rgba(0,0,0,0.6),
     0    0  6px rgba(0,0,0,0.4);
}
.puppy-heading {
  text-shadow: none;
}

/* Announcement buttons */
.announcement-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem 2rem 1rem;
}

/* ========================================
   Three-Column Layout
   ======================================== */
.three-col {
  display: grid;
  grid-template-columns: 370px 1fr 370px;
  gap: 2.5rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

/* Side columns (sire & dam) */
.side-col {
  text-align: center;
}
.side-photo {
  border: 3px solid var(--amber-500);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow:
    0 0 0 6px rgba(26, 18, 16, 0.6),
    0 0 0 8px rgba(207, 160, 51, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.side-photo:hover {
  box-shadow:
    0 0 0 6px rgba(26, 18, 16, 0.6),
    0 0 0 8px rgba(207, 160, 51, 0.5),
    0 0 24px rgba(207, 160, 51, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}
.side-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.side-col .btn-block {
  margin-bottom: 1.25rem;
}
.side-info h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.dog-fullname {
  color: var(--amber-300);
  font-style: italic;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}
.pedigree-link {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.6rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber-300);
  background: rgba(207, 160, 51, 0.12);
  border: 1px solid var(--amber-500);
  border-radius: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: all 0.25s var(--ease);
}
.pedigree-link:hover {
  color: var(--white);
  background: rgba(207, 160, 51, 0.25);
  border-color: var(--amber-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(207, 160, 51, 0.2);
}
.side-info p {
  font-size: 1.1rem;
  color: var(--text-on-dark);
  line-height: 1.85;
}

/* Credentials list */
.credentials {
  list-style: none;
  text-align: left;
  margin-bottom: 1rem;
}
.credentials li {
  position: relative;
  padding-left: 1.1rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.credentials li:nth-child(even) {
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}
.credentials li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.credentials .owner-descriptors {
  font-size: 0.82rem;
}
.credentials li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--amber-400);
  font-size: 1.1em;
}

/* Center column */
.center-col {
  min-width: 0;
}

/* ========================================
   Parent Dog Cards
   ======================================== */
.parents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
a.parent-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.parent-card {
  background: rgba(35, 26, 21, 0.85);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(207, 160, 51, 0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.parent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(207, 160, 51, 0.25);
}
.parent-photo { position: relative; overflow: hidden; }
.parent-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
}
.parent-card:hover .parent-photo img { transform: scale(1.03); }
.parent-details { padding: 1.5rem; }
.parent-role {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber-500);
  display: block;
  margin-bottom: 0.25rem;
}
.parent-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 0.15rem;
  line-height: 1.15;
}
.parent-fullname {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.parent-fullname-prominent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--amber-400);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.parent-learn-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-400);
  opacity: 0.8;
  transition: opacity 0.25s, letter-spacing 0.25s;
}
.parent-card:hover .parent-learn-more {
  opacity: 1;
  letter-spacing: 0.1em;
}
.parent-highlights {
  list-style: none;
  margin-bottom: 1.25rem;
}
.parent-highlights li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.parent-highlights li:last-child { border-bottom: none; }
.parent-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fire-500);
}
.parent-actions {
  display: flex;
  gap: 0.6rem;
}
.parent-actions .btn { flex: 1; }

/* ========================================
   Ribbon Section Headings
   ======================================== */
.ribbon-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-style: italic;
  color: var(--amber-400);
  text-align: center;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.ribbon-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-500), var(--ember-500));
  border-radius: 2px;
}

/* Homepage sections */
.home-section {
  padding: 1.25rem 0;
  border-bottom: none;
  position: relative;
}
.home-section::after {
  content: '\2726  \2727  \2726';
  display: block;
  text-align: center;
  padding-top: 1.25rem;
  font-size: 1.1rem;
  letter-spacing: 0.6em;
  color: var(--amber-500);
  opacity: 0.6;
  text-shadow: 0 0 8px rgba(207, 160, 51, 0.3);
}
.home-section:last-child::after {
  display: none;
}

/* Litter description panel */
.litter-panel {
  background: rgba(35, 26, 21, 0.75);
  border: 1px solid rgba(207, 160, 51, 0.15);
  border-left: 3px solid var(--amber-500);
  border-radius: 10px;
  padding: 2rem 2.5rem;
  max-width: 1020px;
  margin: 0 auto;
}
.litter-panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  color: var(--amber-400);
  margin-bottom: 1.25rem;
}
.litter-panel .prose p {
  color: var(--sand-100);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.litter-panel .prose p:last-child { margin-bottom: 0; }
.litter-panel .prose a {
  color: var(--amber-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.litter-panel .prose a:hover { color: var(--amber-300); }
.litter-panel .prose a.btn { color: var(--white); text-decoration: none; }
.litter-panel .prose a.btn:hover { color: var(--white); }
@media (max-width: 600px) {
  .litter-panel { padding: 1.5rem 1.25rem; }
}

/* Litter Summary section */
.litter-summary-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}
.litter-summary-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(35, 26, 21, 0.85);
  border: 1px solid rgba(207, 160, 51, 0.3);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  flex: 1;
  min-width: 240px;
}
.litter-summary-card:hover {
  transform: translateY(-2px);
  border-color: var(--amber-400);
  box-shadow: 0 6px 24px rgba(207, 160, 51, 0.2);
}
.litter-summary-icon {
  font-size: 1.4rem;
  color: var(--amber-400);
  flex-shrink: 0;
}
.litter-summary-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.litter-summary-sub {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 0.15rem;
}
.litter-summary-arrow {
  font-size: 1.2rem;
  color: var(--amber-400);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.litter-summary-card:hover .litter-summary-arrow {
  transform: translateX(3px);
}
@media (max-width: 550px) {
  .litter-summary-links { flex-direction: column; align-items: center; }
  .litter-summary-card { min-width: 0; width: 100%; max-width: 320px; }
}

/* Explore the Parents section */
.explore-parents { border-bottom: none; padding-top: 0.25rem; }
.health-section { padding-top: 0.25rem; }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.explore-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(35, 26, 21, 0.85);
  border: 1px solid rgba(207, 160, 51, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.explore-card:hover {
  transform: translateY(-3px);
  border-color: var(--amber-400);
  box-shadow: 0 8px 30px rgba(207, 160, 51, 0.15);
}
.explore-thumb {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--amber-500);
}
.explore-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.explore-role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-500);
}
.explore-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0.15rem 0;
}
.explore-fullname {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--amber-400);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.explore-cta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sand-300);
  transition: color 0.25s, letter-spacing 0.25s;
}
.explore-card:hover .explore-cta {
  color: var(--amber-300);
  letter-spacing: 0.08em;
}
@media (max-width: 700px) {
  .explore-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.home-section .prose {
  color: var(--text-on-dark);
  font-size: 1.25rem;
  line-height: 1.9;
}
.home-section .prose a {
  color: var(--amber-400);
}
.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--amber-300);
  text-align: center;
  margin-bottom: 1.25rem;
}

/* Belief quote */
.belief-quote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-style: italic;
  text-align: center;
  color: var(--amber-200);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--amber-500);
  background: rgba(207, 160, 51, 0.06);
  border-radius: 0 8px 8px 0;
  line-height: 1.65;
}

/* Hunter callout — bold emphasis banner */
.hunter-callout-section {
  border-bottom: none;
  padding: 0;
}
.hunter-callout {
  text-align: center;
  padding: 2.5rem 3rem;
  background: rgba(26, 18, 16, 0.6);
  border: 3px solid var(--amber-400);
  border-radius: 10px;
  max-width: 1020px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 20px rgba(207, 160, 51, 0.25),
    0 0 60px rgba(207, 160, 51, 0.1),
    inset 0 0 30px rgba(207, 160, 51, 0.05);
  animation: callout-glow 3s ease-in-out infinite;
}
@keyframes callout-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(207,160,51,0.25), 0 0 60px rgba(207,160,51,0.1), inset 0 0 30px rgba(207,160,51,0.05); }
  50% { box-shadow: 0 0 30px rgba(207,160,51,0.4), 0 0 80px rgba(207,160,51,0.15), inset 0 0 40px rgba(207,160,51,0.08); }
}
.hunter-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(207,160,51,0.12), transparent);
  animation: callout-shimmer 4s ease-in-out infinite;
}
@keyframes callout-shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.callout-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-style: italic;
  color: var(--amber-300);
  margin-bottom: 1rem;
  position: relative;
}
.hunter-callout p {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.8vw, 1.65rem);
  font-weight: 700;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow:
    -1px -1px 0 rgba(0,0,0,0.9),
    1px -1px 0 rgba(0,0,0,0.9),
    -1px 1px 0 rgba(0,0,0,0.9),
    1px 1px 0 rgba(0,0,0,0.9),
    0 0 12px rgba(0,0,0,0.7);
  position: relative;
  z-index: 1;
  margin: 0;
  line-height: 1.8;
}
.callout-punch {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.35em;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-300);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--amber-500);
  text-decoration-thickness: 3px;
  text-shadow:
    -1px -1px 0 rgba(0,0,0,0.9),
    1px -1px 0 rgba(0,0,0,0.9),
    -1px 1px 0 rgba(0,0,0,0.9),
    1px 1px 0 rgba(0,0,0,0.9),
    0 0 20px rgba(207,160,51,0.5);
}

/* Callout separator lines */
.callout-divider {
  display: block;
  margin: 0.75rem auto;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-400), transparent);
}

/* Health note */
.health-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}
.doc-links { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1rem; }

/* Health button wrapper */
.health-btn-wrap {
  text-align: center;
  margin: 1.5rem 0;
}

/* ========================================
   Puppy Gallery Section
   ======================================== */
.puppy-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  border-bottom: none;
}

.puppy-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  font-style: italic;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  position: relative;
  background: linear-gradient(
    90deg,
    var(--amber-400) 0%,
    var(--amber-200) 20%,
    var(--white) 50%,
    var(--amber-200) 80%,
    var(--amber-400) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}
.puppy-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber-500), var(--ember-500));
  border-radius: 2px;
}
@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Puppy layout: grid on left, group sidebar on right */
.puppy-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}
.puppy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.puppy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.puppy-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 30px rgba(0,0,0,0.4),
    0 0 20px rgba(207, 160, 51, 0.15),
    inset 0 1px 0 rgba(207, 160, 51, 0.2);
  border-color: rgba(207, 160, 51, 0.35);
}
.puppy-name {
  padding: 0.75rem 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber-300);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.35;
}
.puppy-image {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.puppy-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s var(--ease); }
.puppy-card:hover .puppy-image img { transform: scale(1.08); }
.puppy-links { display: flex; gap: 0.4rem; padding: 0.65rem; }
.puppy-links .btn { flex: 1; }

/* Staggered reveal for puppy cards */
.puppy-card.reveal {
  transition-duration: 0.5s;
}
.puppy-card:nth-child(1) { transition-delay: 0s; }
.puppy-card:nth-child(2) { transition-delay: 0.07s; }
.puppy-card:nth-child(3) { transition-delay: 0.14s; }
.puppy-card:nth-child(4) { transition-delay: 0.21s; }
.puppy-card:nth-child(5) { transition-delay: 0.28s; }
.puppy-card:nth-child(6) { transition-delay: 0.35s; }
.puppy-card:nth-child(7) { transition-delay: 0.42s; }
.puppy-card:nth-child(8) { transition-delay: 0.49s; }

/* Placeholder puppy cards */
.puppy-card-placeholder .puppy-image {
  background: linear-gradient(135deg, rgba(207,160,51,0.08) 0%, rgba(168,72,32,0.08) 100%);
}
.puppy-card-placeholder .puppy-image img {
  object-fit: contain;
  padding: 0.75rem;
}
.puppy-card-placeholder .puppy-links .btn {
  opacity: 0.6;
  cursor: default;
}
.gallery-note {
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 2rem;
}

/* Puppy grid area wrapper */
.puppy-grid-area {
  min-width: 0;
}

/* Group sidebar (right side) */
.group-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.group-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.group-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.group-card a { display: block; color: var(--white); padding: 0.75rem; }
.group-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }
.group-card .btn { margin-top: 0.75rem; }
.group-card h3 { padding: 0.65rem 0.85rem; font-size: 1.25rem; text-align: center; color: var(--amber-300); font-family: var(--font-display); font-style: italic; }
.group-card-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(207,160,51,0.15) 0%, rgba(168,72,32,0.15) 100%);
  border: 2px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--amber-300);
}

/* Coming soon */
.coming-soon {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 14px;
  color: var(--amber-300);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}

/* ========================================
   Gallery Page (inner pages)
   ======================================== */
.gallery-page {
  padding: 3rem 0 4rem;
  background: var(--cream);
  color: var(--text-primary);
}
.gallery-page .container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.gallery-page .page-title { color: var(--dark-900); }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-light);
  transition: transform 0.3s var(--ease);
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.video-item video {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}
.gallery-nav { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-light); display: flex; gap: 1rem; flex-wrap: wrap; }
.gallery-nav a { color: var(--white); }

/* ========================================
   Lightbox
   ======================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 18, 16, 0.94);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 2.5rem;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 1rem; right: 1.5rem; font-size: 2rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ========================================
   Single Page Content (inner pages)
   ======================================== */
.page-content {
  padding: 3rem 0 4rem;
  background: var(--cream);
  color: var(--text-primary);
}
.page-content .container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.page-content .prose { line-height: 1.9; }
.page-title { margin-bottom: 0.25rem; color: var(--dark-900); }
.page-subtitle-inline {
  display: block;
  font-family: var(--font-display);
  font-size: 0.55em;
  font-style: italic;
  font-weight: 600;
  color: #5e3812;
  margin-top: 0.2rem;
}
.subtitle-x {
  color: var(--ember-600);
  font-weight: 800;
  font-style: normal;
  font-size: 1.15em;
}
.page-content .prose img { border-radius: 10px; margin: 1.5rem 0; border: 1px solid var(--border-light); }
.page-content .prose ul { margin: 1rem 0 1.5rem 1.5rem; }
.page-content .prose li { margin-bottom: 0.4rem; }
.page-content .prose a { color: var(--ember-600); }
.page-content .prose a.btn-gold { color: var(--white); text-decoration: none; }
.page-content .prose a.btn-gold:hover { color: var(--white); }
/* Owner's Descriptors block (about pages) */
.descriptors-block {
  text-align: center;
  margin: 0.75rem 0 1rem;
  padding: 1rem 1.5rem;
}
@media (max-width: 480px) {
  .descriptors-block { padding: 1.5rem 0.75rem; }
  .descriptors-block .desc-quote { font-size: 0.95rem; }
}
.descriptors-block .desc-line {
  display: block;
  width: 60%;
  max-width: 500px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--amber-400), transparent);
}
.descriptors-block .desc-quote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #5e3812;
  margin: 1.25rem 0;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}
.desc-word { white-space: nowrap; }
.desc-sep { margin: 0 0.3em; opacity: 0.6; }
.descriptors-block .desc-attribution {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a3210;
  margin: 1rem 0 1.25rem;
}

.pedigree-btn.btn.btn-gold.btn-lg {
  display: block;
  text-align: center;
  margin: 2.5rem auto 0;
  max-width: 520px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 1rem 2rem;
}
/* About-page inline photo section */
.about-photos {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}
.about-photos .ribbon-heading {
  color: var(--dark-900);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
}
.about-photos .ribbon-heading::after {
  background: var(--ember-500);
}
.about-photos .photo-gallery {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 600px) {
  .about-photos .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Pedigree section on about pages */
.pedigree-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

/* Also see — cross-link to other parent on about pages */
.also-see {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  max-width: 420px;
}
.also-see .explore-card {
  background: var(--white);
  border-color: var(--border-light);
}
.also-see .explore-card:hover {
  border-color: var(--ember-500);
  box-shadow: 0 8px 30px rgba(168, 72, 32, 0.12);
}
.also-see .explore-role { color: var(--ember-600); }
.also-see .explore-name { color: var(--dark-900); }
.also-see .explore-fullname { color: var(--ember-700); }
.also-see .explore-cta { color: var(--ember-600); }
.also-see .explore-card:hover .explore-cta { color: var(--ember-500); }
.also-see .explore-thumb { border-color: var(--ember-500); }

.page-nav { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-light); display: flex; gap: 1rem; flex-wrap: wrap; }
.page-list { display: grid; gap: 1rem; margin-top: 2rem; }
.page-list-item {
  display: block;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  transition: all 0.25s var(--ease);
}
.page-list-item:hover { border-color: var(--ember-500); transform: translateX(4px); }
.page-list-item h3 { font-size: 1.1rem; margin-bottom: 0.25rem; color: var(--dark-900); }
.page-list-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ========================================
   Previous Litter — Tiered Layout
   ======================================== */
.litter-hierarchy {
}

/* Level 2 sections — indented from page title */
.litter-l2 {
  margin-bottom: 2rem;
  margin-left: 1.25rem;
}
.litter-l2-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.litter-l2-value {
  font-size: 1.25rem;
  color: var(--dark-900);
  font-weight: 700;
}

.litter-l2-value-inline {
  font-size: 1.25rem;
  color: var(--dark-900);
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
}

/* Litter summary buttons — centered side by side */
.litter-btn-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Level 3 — puppy cards */
.litter-l3 {
  max-width: 960px;
  margin: 0 auto;
}
.puppy-entry {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.25rem 1.5rem 1.25rem 0.35rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s;
}
.puppy-entry:hover {
  border-color: var(--ember-500);
}
.puppy-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 0.75rem;
  text-align: left;
}
.puppy-name .puppy-number {
  color: var(--ember-600);
  font-size: 1.3rem;
}
.puppy-name .puppy-nickname {
  color: var(--dark-900);
  font-size: 1.3rem;
}
.puppy-name .puppy-desc {
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}

/* Puppy content row — buttons left, placeholders right */
.puppy-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Media buttons (left side) */
.puppy-media-row {
  display: flex;
  gap: 0.5rem;
}
.puppy-media-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 8px;
  border: none;
  cursor: default;
  text-decoration: none;
  transition: all 0.2s;
}
.puppy-media-btn.has-content {
  background: linear-gradient(180deg, #c9a84c, #a08030);
  color: var(--white);
  cursor: pointer;
  border: 1px solid #8a6e28;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.puppy-media-btn.has-content:hover {
  background: linear-gradient(180deg, #dab34a, #b8961e);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(207, 160, 51, 0.3);
}
.puppy-media-btn.empty {
  background: var(--cream);
  color: var(--text-muted);
  border: 1px dashed #ccc;
}
.puppy-media-btn .media-icon {
  font-size: 1rem;
}
.puppy-empty-note {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Photo placeholder grid (right side) */
.puppy-photo-grid {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.photo-placeholder {
  width: 180px;
  height: 180px;
  border: 2px dashed #7ecbce;
  border-radius: 8px;
  background: #f0fafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5aa;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.photo-placeholder .placeholder-icon {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  opacity: 0.5;
}

/* Image gallery heading */
.litter-gallery-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .puppy-entry { padding: 1rem; }
  .puppy-content-row { flex-wrap: wrap; }
  .puppy-media-row { flex-wrap: wrap; }
  .puppy-media-btn { justify-content: center; }
  .litter-btn-row { flex-direction: column; }
  .litter-btn-row .btn { text-align: center; }
  .photo-placeholder { width: 130px; height: 130px; }
  .litter-l2 { margin-left: 0; }
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(207, 160, 51, 0.06) 0%, transparent 60%),
    var(--dark-950);
  border-top: none;
  padding: 0;
  position: relative;
}
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--amber-600), var(--amber-400), var(--amber-600), transparent 95%);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  text-align: center;
}
.footer-brand { margin-bottom: 1.75rem; }
.footer-logo { height: 65px; margin: 0 auto 0.85rem; filter: drop-shadow(0 2px 8px rgba(207, 160, 51, 0.2)); }
.footer-brand h3 {
  font-size: 1.4rem;
  color: var(--amber-400);
  letter-spacing: 0.03em;
}
.footer-contact { margin-bottom: 1.75rem; }
.footer-contact p { margin-bottom: 0.45rem; }
.footer-contact a {
  color: var(--text-on-dark);
  font-size: 1.05rem;
  transition: color 0.25s var(--ease);
}
.footer-contact a:hover { color: var(--amber-400); }
.footer-contact a.litter-link {
  color: var(--amber-300);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--amber-500);
}
.footer-contact a.litter-link:hover { color: var(--amber-200); }

/* Contact email highlight pulse */
@keyframes emailPulse {
  0%   { background: transparent; }
  20%  { background: rgba(207, 160, 51, 0.35); }
  100% { background: transparent; }
}
#contact-email.highlight {
  border-radius: 4px;
  padding: 0.15em 0.4em;
  animation: emailPulse 1.5s ease 2;
}
.footer-copy {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(207, 160, 51, 0.12);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}
.footer-credit {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}
.footer-credit a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-credit a:hover {
  color: var(--amber-400);
}

/* ========================================
   Previous Litters landing page
   ======================================== */
.litter-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 2rem auto 0;
}
.litter-link-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.litter-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--ember-500);
  box-shadow: 0 8px 30px rgba(168, 72, 32, 0.12);
}
.litter-link-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark-900);
  margin-bottom: 0.5rem;
}
.litter-link-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.litter-link-card .explore-cta {
  color: var(--ember-600);
}
.litter-link-card:hover .explore-cta {
  color: var(--ember-500);
}
@media (max-width: 600px) {
  .litter-links { grid-template-columns: 1fr; }
}

/* ========================================
   Contact Form (standalone page)
   ======================================== */
.contact-page .page-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--dark-900);
}
.contact-page .contact-intro,
.contact-page .form-group label,
.contact-page .form-group .optional,
.contact-page .radio-group-label,
.contact-page .radio-group-note,
.contact-page .radio-option span,
.contact-page .form-group input,
.contact-page .form-group textarea {
  color: #000 !important;
}
.contact-phone-banner {
  text-align: left;
  max-width: 650px;
  margin: 0 auto 1.25rem;
}
.contact-phone-banner a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark-900);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--amber-500);
  border-radius: 8px;
  background: rgba(207, 160, 51, 0.08);
  transition: all 0.25s var(--ease);
}
.contact-phone-banner a:hover {
  background: rgba(207, 160, 51, 0.18);
  color: var(--dark-950);
}
.contact-panel-page {
  max-width: 650px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid #b8a48e;
  border-radius: 12px;
  padding: 2.5rem 3rem;
  box-shadow: 0 4px 20px rgba(26, 18, 16, 0.1);
}
.contact-intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-form {
  max-width: 560px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ember-600);
  margin-bottom: 0.5rem;
}
.form-group .optional {
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  font-size: 1.1rem;
  opacity: 1;
  color: var(--text-secondary);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 1rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-900);
  background: var(--cream-warm);
  border: 2px solid #b8a48e;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ember-500);
  box-shadow: 0 0 0 3px rgba(168, 72, 32, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.radio-group-label {
  margin-bottom: 0.25rem !important;
}
.radio-group-note {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ember-600);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  color: var(--text-primary) !important;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  border: 2px solid #b8a48e;
  transition: background 0.2s, border-color 0.2s;
}
.radio-option:hover {
  background: var(--cream-warm);
  border-color: var(--ember-500);
}
.radio-option input[type="radio"],
.radio-option input[type="checkbox"] {
  accent-color: var(--ember-600);
  width: 24px;
  height: 24px;
  margin-top: 2px;
  flex-shrink: 0;
}
.other-option {
  flex-wrap: wrap;
}
.other-input {
  flex: 1;
  min-width: 150px;
  padding: 0.6rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--text-primary);
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.other-input:focus {
  border-color: var(--ember-500);
  box-shadow: 0 0 0 3px rgba(168, 72, 32, 0.1);
}
.other-input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.radio-option span {
  line-height: 1.4;
}
@media (max-width: 600px) {
  .contact-panel-page { padding: 1.5rem 1.25rem; }
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1400px) {
  .three-col {
    grid-template-columns: 300px 1fr 300px;
    gap: 1.5rem;
  }
}
@media (max-width: 1100px) {
  .three-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .sire-col { order: 1; }
  .dam-col { order: 2; }
  .center-col { order: 3; }
  .side-col {
    max-width: 400px;
    margin: 0 auto;
  }
  .side-photo img {
    aspect-ratio: 3/4;
  }
  .puppy-layout { grid-template-columns: 1fr; }
  .puppy-grid { grid-template-columns: repeat(3, 1fr); }
  .group-sidebar { flex-direction: row; }
  .group-sidebar .group-card { flex: 1; }
}
@media (max-width: 1100px) {
  .mobile-menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 18, 16, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border-dark);
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 0.85rem 1rem; width: 100%; text-align: center; font-size: 1.1rem; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { justify-content: center; width: 100%; }
  .nav-dropdown-menu {
    position: static;
    display: none;
    background: rgba(26, 18, 16, 0.5);
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-item { text-align: center; font-size: 0.95rem; padding: 0.7rem 1rem; }
}
@media (max-width: 768px) {
  .header-contact { justify-content: center; text-align: center; font-size: 0.95rem; }
  .announcement-bar { flex-direction: column; align-items: center; }
  .hero { padding: 1rem 1rem; }
  .hero-title { font-size: 1.3rem; margin-bottom: 0.3rem; }
  .hero-subtitle { font-size: 1rem; }
  .parents-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .parent-photo img { aspect-ratio: 1 / 1; }
  .parent-details { padding: 0.5rem; }
  .parent-name { font-size: 1.1rem; }
  .parent-fullname-prominent { font-size: 0.7rem; margin-bottom: 0.25rem; }
  .parent-role { font-size: 0.6rem; margin-bottom: 0.15rem; }
  .parent-actions { flex-direction: column; }
  .home-section { padding: 0.75rem 0; }
  .home-section::after { padding-top: 0.75rem; font-size: 0.9rem; }
  .hunter-callout { padding: 1.5rem 1.25rem; }
  .puppy-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .group-sidebar { flex-direction: column; }
  .photo-gallery { grid-template-columns: repeat(3, 1fr); }
  .video-gallery { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero { padding: 0.75rem 0.75rem; }
  .hero-title { font-size: 1.15rem; }
  .parents-grid { gap: 0.4rem; }
  .parent-photo img { aspect-ratio: 1 / 1; }
  .parent-details { padding: 0.4rem; }
  .parent-name { font-size: 1rem; }
  .parent-fullname-prominent { font-size: 0.65rem; }
  .home-section { padding: 0.5rem 0; }
  .home-section::after { padding-top: 0.5rem; }
  .hunter-callout { padding: 1.25rem 1rem; }
  .puppy-grid { grid-template-columns: 1fr; }
  .logo-text { font-size: 1.1rem; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
