/* ========================================
   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);
}

/* ---- 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); }

/* ---- 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.75rem 1.6rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  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-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-sm {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  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: 1px solid var(--border-dark);
}
.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; }
.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-on-dark);
  border-radius: 5px;
  transition: all 0.25s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.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.35rem clamp(1.25rem, 4vw, 2.5rem);
  font-size: 0.8rem;
  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.7;
}
.header-contact a { color: var(--text-on-dark); }
.header-contact a:hover { color: var(--amber-400); }
.header-divider { opacity: 0.3; }

/* 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.25);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--amber-500);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  color: var(--amber-300);
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 15px rgba(0,0,0,0.35);
}

/* ========================================
   Homepage Body — dark background
   ======================================== */
.homepage-body {
  position: relative;
  background: transparent;
  color: var(--white);
}
/* Fixed background via pseudo-element — much smoother scroll than background-attachment: fixed */
.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.75);
  pointer-events: none;
}
.homepage-body > * {
  position: relative;
  z-index: 1;
}
/* Black outline on text for readability over the sunset background */
.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);
}
/* Override: shimmer heading uses background-clip text, no outline */
.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: 320px 1fr 320px;
  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 rgba(255,255,255,0.15);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.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 links — clearly styled as clickable links */
.pedigree-link {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  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.3rem;
  margin-bottom: 0.55rem;
  font-size: 1.1rem;
  color: var(--text-on-dark);
}
.credentials li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--amber-400);
  font-size: 1.1em;
}

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

/* ========================================
   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: 1.5rem;
  padding-bottom: 0.75rem;
  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: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.home-section:last-child {
  border-bottom: none;
}
.home-section .prose {
  color: var(--text-on-dark);
  font-size: 1.25rem;
  line-height: 1.9;
}
.home-section .prose a {
  color: var(--amber-400);
}

/* 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: 1.5rem 0;
}
.hunter-callout {
  text-align: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(207,160,51,0.15), rgba(200,90,40,0.15));
  border: 2px solid var(--amber-500);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.hunter-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(207,160,51,0.08), transparent);
  animation: callout-shimmer 4s ease-in-out infinite;
}
@keyframes callout-shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.hunter-callout p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--amber-300);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(207,160,51,0.3);
  position: relative;
  z-index: 1;
  margin: 0;
}

/* 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;
}

/* Shimmer heading — modern alternative to a scrolling marquee */
.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(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.puppy-name {
  padding: 0.75rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--amber-300);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.3;
}
.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; }

/* Placeholder puppy cards (before litter arrives) */
.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.5);
  font-size: 0.88rem;
  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-top: 3rem;
  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(auto-fill, minmax(250px, 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: 1; object-fit: cover; }
.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); }
.gallery-nav a { color: var(--ember-600); }

/* ========================================
   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-top: 3rem;
  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-title { margin-bottom: 0.5rem; color: var(--dark-900); }
.page-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ember-600);
  margin-bottom: 2rem;
}
.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-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); }

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--dark-950);
  border-top: 3px solid var(--amber-500);
  padding: 3rem 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}
.footer-brand { margin-bottom: 1.5rem; }
.footer-logo { height: 60px; margin: 0 auto 0.75rem; }
.footer-brand h3 { font-size: 1.3rem; color: var(--amber-400); }
.footer-contact { margin-bottom: 1.5rem; }
.footer-contact p { margin-bottom: 0.3rem; }
.footer-contact a { color: var(--text-on-dark); font-size: 1rem; }
.footer-contact a:hover { color: var(--amber-400); }
.footer-copy {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .three-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .side-col {
    max-width: 400px;
    margin: 0 auto;
  }
  .side-photo img {
    aspect-ratio: 4/3;
  }
  .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: 768px) {
  .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.75rem 1rem; width: 100%; text-align: center; }
  .header-contact { justify-content: center; text-align: center; font-size: 0.75rem; }
  .announcement-bar { flex-direction: column; align-items: center; }
  .puppy-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .group-sidebar { flex-direction: column; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .video-gallery { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .puppy-grid { grid-template-columns: 1fr; }
  .logo-text { font-size: 1.1rem; }
  .photo-gallery { grid-template-columns: 1fr; }
}
