/* ============================================================
   SOUTHERN HERITAGE GSPs — styles.css
   Colors: Deep Brown #3D1A0A | Amber #E8821A | Gold #F5B942
           Cream #F5ECD0 | Burnt Orange #C4601A
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --brown: #3D1A0A;
  --brown-mid: #5C2A10;
  --amber: #E8821A;
  --gold: #F5B942;
  --cream: #F5ECD0;
  --burnt: #C4601A;
  --dark-bg: #2A1006;
  --light-bg: #FDF6E9;
  --text-dark: #2A1006;
  --text-mid: #5C3D20;
  --text-light: #F5ECD0;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(61, 26, 10, 0.15);
  --shadow-lg: 0 12px 48px rgba(61, 26, 10, 0.25);
  --radius: 8px;
  --radius-lg: 16px;
  --nav-height: 80px;
  --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 18px;
  overflow-x: hidden;
}

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

a { color: var(--amber); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--burnt); }

h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dark-section {
  background: var(--dark-bg);
  color: var(--text-light);
}

.section-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(232, 130, 26, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 185, 66, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown);
  margin-bottom: 20px;
}
.section-title.light { color: var(--cream); }
.section-title em { color: var(--amber); font-style: italic; }

.section-header.centered { text-align: center; max-width: 700px; margin: 0 auto 60px; }

.section-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 640px;
}
.section-intro.light { color: rgba(245, 236, 208, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--burnt);
  border-color: var(--burnt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 130, 26, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 236, 208, 0.5);
}
.btn-outline:hover {
  background: rgba(245, 236, 208, 0.1);
  border-color: var(--cream);
  color: var(--cream);
}
.btn-outline-dark {
  background: transparent;
  color: var(--amber);
  border-color: var(--amber);
}
.btn-outline-dark:hover {
  background: var(--amber);
  color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-large { padding: 18px 48px; font-size: 16px; width: 100%; text-align: center; }
.btn-muted {
  background: rgba(255,255,255,0.08);
  color: rgba(245,236,208,0.5);
  border-color: rgba(245,236,208,0.2);
}
.btn-muted:hover { background: rgba(255,255,255,0.15); color: var(--cream); }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(42, 16, 6, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 236, 208, 0.85);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(245, 185, 66, 0.1); }
.nav-links .nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover {
  background: var(--burnt);
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(
      160deg,
      #1a0800 0%,
      #3D1A0A 30%,
      #6B3010 55%,
      #C4601A 78%,
      #E8821A 100%
    );
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(245, 185, 66, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 130, 26, 0.15) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--light-bg), transparent);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 80px;
}

.hero-logo {
  width: 280px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  animation: heroFadeIn 1.2s ease both;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  animation: heroFadeIn 1.2s ease 0.2s both;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245, 236, 208, 0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  animation: heroFadeIn 1.2s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeIn 1.2s ease 0.6s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 236, 208, 0.5);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: heroFadeIn 1.2s ease 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(245, 236, 208, 0.4);
  border-bottom: 2px solid rgba(245, 236, 208, 0.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--light-bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #d4c4a0, #b89c70);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brown-mid);
  font-size: 1rem;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}
.img-icon { font-size: 3rem; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--amber);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 18px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
  background: rgba(232, 130, 26, 0.08);
  border: 1px solid rgba(232, 130, 26, 0.2);
  padding: 12px 16px;
  border-radius: var(--radius);
}
.value-icon { font-size: 1.3rem; }

/* ============================================================
   PUPPIES
   ============================================================ */
.puppies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.puppy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245, 236, 208, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.puppy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
  border-color: rgba(232, 130, 26, 0.3);
}
.puppy-img-wrap { position: relative; }
.puppy-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(92, 42, 16, 0.4), rgba(61, 26, 10, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.puppy-status {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
}
.puppy-status.available { background: #4a7c4e; color: white; }
.puppy-status.reserved  { background: rgba(196, 96, 26, 0.9); color: white; }
.puppy-info { padding: 24px; }
.puppy-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.puppy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.puppy-meta span {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 185, 66, 0.12);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(245, 185, 66, 0.25);
}
.puppy-info p {
  color: rgba(245, 236, 208, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.section-footer-note {
  text-align: center;
  margin-top: 48px;
  color: rgba(245, 236, 208, 0.6);
}
.section-footer-note a { color: var(--gold); }

/* ============================================================
   LITTERS
   ============================================================ */
.litters { background: var(--light-bg); }
.litters-timeline { display: flex; flex-direction: column; gap: 0; }
.litter-item {
  display: grid;
  grid-template-columns: 120px 40px 1fr;
  gap: 0 24px;
  align-items: start;
  padding-bottom: 48px;
  position: relative;
}
.litter-item:last-child { padding-bottom: 0; }
.litter-date-block {
  text-align: right;
  padding-top: 4px;
}
.litter-month {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.litter-year {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
}
.litter-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.litter-connector::after {
  content: '';
  position: absolute;
  top: 20px;
  bottom: -48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}
.litter-item:last-child .litter-connector::after { display: none; }
.litter-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--light-bg);
  box-shadow: 0 0 0 3px var(--amber);
  margin-top: 4px;
  flex-shrink: 0;
}
.litter-details {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232, 130, 26, 0.1);
}
.litter-details h3 {
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 12px;
}
.litter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.litter-meta span {
  font-size: 0.9rem;
  color: var(--text-mid);
}
.litter-details p {
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* ============================================================
   HEALTH
   ============================================================ */
.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.health-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245, 236, 208, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.health-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232, 130, 26, 0.3);
  transform: translateY(-4px);
}
.health-icon { font-size: 2.4rem; margin-bottom: 16px; }
.health-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.health-card p {
  color: rgba(245, 236, 208, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--light-bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; transition: var(--transition); cursor: pointer; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); z-index: 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4c4a0, #c9b080, #b89460);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brown-mid);
}
.gallery-placeholder span { font-size: 2rem; }
.gallery-placeholder p { font-size: 0.8rem; font-style: italic; }
.gallery-note {
  text-align: center;
  margin-top: 36px;
  color: var(--text-mid);
  font-style: italic;
}

/* ============================================================
   INQUIRY FORM
   ============================================================ */
.inquiry-wrap { max-width: 800px; margin: 0 auto; }
.inquiry-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245, 236, 208, 0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 32px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 185, 66, 0.2);
}
.form-section-title:first-child { margin-top: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 236, 208, 0.7);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245, 236, 208, 0.15);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245, 236, 208, 0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(232, 130, 26, 0.15);
}
.form-group select option { background: var(--dark-bg); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  margin-top: 16px;
  color: rgba(245, 236, 208, 0.45);
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--light-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { color: var(--text-mid); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(61, 26, 10, 0.07);
  border: 1px solid rgba(232, 130, 26, 0.1);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 4px;
}
.contact-item p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }
.map-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #d4c4a0, #c9b080);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brown-mid);
  text-align: center;
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.map-placeholder span { font-size: 3rem; }
.map-placeholder p { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
.map-placeholder small { font-size: 0.85rem; font-style: italic; opacity: 0.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--brown);
  color: var(--cream);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.footer-logo img {
  height: 80px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0.95);
}
.footer-text p { line-height: 1.8; color: rgba(245, 236, 208, 0.7); }
.footer-text strong { color: var(--cream); font-size: 1.1rem; }
.footer-tagline { color: var(--gold) !important; font-style: italic; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 236, 208, 0.5);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(245, 236, 208, 0.35);
  border-top: 1px solid rgba(245, 236, 208, 0.1);
  padding-top: 24px;
  width: 100%;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .litter-item { grid-template-columns: 80px 32px 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(42, 16, 6, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-top: 1px solid rgba(245, 236, 208, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .section { padding: 70px 0; }
  .inquiry-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-logo { width: 200px; }
  .litter-item { grid-template-columns: 1fr; gap: 12px; }
  .litter-date-block { text-align: left; }
  .litter-connector { display: none; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .about-values { grid-template-columns: 1fr; }
  .puppies-grid { grid-template-columns: 1fr; }
}
