/* =============================================
   HIGH POINT ENGLISH SHEPHERDS
   Rustic Barn Aesthetic — Browns, Tans, Greens
   ============================================= */

:root {
  --brown-dark:   #3b2712;
  --brown-mid:    #6b4226;
  --brown-light:  #a0693a;
  --tan:          #c4a882;
  --tan-light:    #e8d9c3;
  --cream:        #f5efe6;
  --green-dark:   #3a5430;
  --green-mid:    #5a7a4a;
  --green-light:  #8aac72;
  --gold:         #d4a853;
  --text-dark:    #2a1a0a;
  --text-mid:     #5a3e28;
  --text-light:   #8a6a50;
  --white:        #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;

  --radius: 8px;
  --shadow: 0 4px 20px rgba(59,39,18,0.12);
  --shadow-lg: 0 8px 40px rgba(59,39,18,0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.center { text-align: center; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--brown-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
p  { margin-bottom: 1rem; color: var(--text-mid); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
  display: block;
}

/* ---- PHOTO PLACEHOLDERS ---- */
.photo-placeholder {
  background: var(--tan-light);
  border: 2px dashed var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.photo-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--brown-mid);
  color: var(--white);
  border-color: var(--brown-mid);
}
.btn-primary:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--brown-mid);
  border-color: var(--brown-mid);
}
.btn-outline:hover {
  background: var(--brown-mid);
  color: var(--white);
}

/* ---- HEADER / NAV ---- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--tan-light);
  font-weight: 700;
  line-height: 1.2;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--tan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav { display: flex; gap: 0.1rem; margin-left: 1rem; flex-wrap: nowrap; white-space: nowrap; }
nav a {
  color: var(--tan-light);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
nav a:hover, nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--tan-light);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--brown-dark);
  padding: 0.5rem 1.5rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--tan-light);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 1rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #3b2712 0%, #6b4226 40%, #3a5430 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(212,168,83,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(90,122,74,0.12) 0%, transparent 50%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30,15,5,0.5) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 680px;
  margin-left: max(1.5rem, calc(50vw - 520px));
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--tan); }
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--white);
  border-bottom: 3px solid var(--tan-light);
  padding: 1.75rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 2.5rem;
  flex: 1;
  min-width: 220px;
}
.strip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}
.strip-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brown-dark);
  margin-bottom: 0.1rem;
}
.strip-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.4;
}
.strip-divider {
  width: 1px;
  height: 50px;
  background: var(--tan-light);
  flex-shrink: 0;
}

/* ---- HOME ABOUT ---- */
.home-about { padding: 5rem 1.5rem; background: var(--cream); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.home-about-text h2 { margin-bottom: 1.25rem; }
.home-about-dogs { display: flex; flex-direction: column; gap: 1rem; }
.dog-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--tan-light);
  transition: transform 0.2s;
}
.dog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dog-card-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.dog-card-photo.photo-placeholder { border-radius: 50%; }
.dog-card-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brown-dark);
}
.dog-card-info span { font-size: 0.82rem; color: var(--text-light); }

/* ---- LITTER BANNER ---- */
.litter-banner {
  background: var(--brown-dark);
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(90,122,74,0.2) 0%, transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 30px,
      rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px);
  padding: 4rem 1.5rem;
}
.litter-banner-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.litter-text { flex: 1; min-width: 260px; }
.litter-text h2 { color: var(--tan-light); margin-bottom: 1rem; }
.litter-text p  { color: rgba(255,255,255,0.75); }
.litter-badge { flex-shrink: 0; }
.badge-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.1rem;
}
.badge-circle span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.badge-circle strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

/* ---- BREED HIGHLIGHT ---- */
.breed-highlight { padding: 5rem 1.5rem; background: var(--white); }
.breed-highlight h2 { margin-bottom: 3rem; }
.breed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.breed-item {
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--tan-light);
  border-top: 3px solid var(--green-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}
.breed-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.breed-item p { margin: 0; font-size: 0.92rem; }

/* ---- CTA ---- */
.cta {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--brown-mid) 100%);
}
.cta h2 { color: var(--white); margin-bottom: 1rem; }
.cta p  { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 2rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--brown-dark);
  color: var(--tan-light);
  padding: 3rem 1.5rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 0.3rem; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links strong, .footer-contact strong {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--green-dark) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.75); max-width: 540px; margin: 0 auto; }

/* ==========================================
   PUPPIES PAGE
   ========================================== */
.puppies-section { padding: 4rem 1.5rem; background: var(--cream); }

.litter-status-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}
.litter-status-text h3 { font-size: 1.4rem; color: var(--brown-dark); margin-bottom: 0.75rem; }

.litter-parents { margin-top: 3rem; }
.litter-parents h2 { margin-bottom: 0.5rem; }
.litter-parents > p { margin-bottom: 2rem; }
.parents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.parent-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--tan-light);
}
.parent-photo {
  height: 220px;
}
.parent-info { padding: 1.5rem; }
.parent-info h3 { color: var(--brown-dark); }
.parent-role {
  display: inline-block;
  background: var(--tan-light);
  color: var(--brown-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 4px solid var(--green-mid);
  box-shadow: var(--shadow);
}
.info-box h3 { font-size: 1rem; color: var(--brown-dark); margin-bottom: 0.5rem; }
.info-box p  { font-size: 0.9rem; margin: 0; }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-section { padding: 4rem 1.5rem; }
.about-story { background: var(--cream); }
.about-photo-placeholder { height: 380px; }

.goals-section { background: var(--white); padding: 4rem 1.5rem; }
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2.5rem;
}
.goal-item { display: flex; gap: 1rem; align-items: flex-start; }
.goal-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--tan);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  width: 45px;
}
.goal-item h3 { color: var(--brown-dark); margin-bottom: 0.3rem; }
.goal-item p  { font-size: 0.92rem; margin: 0; }

.meet-dogs { background: var(--cream); padding: 4rem 1.5rem; }
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.full-dog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--tan-light);
}
.full-dog-photo { height: 260px; }
.full-dog-info { padding: 1.75rem; }
.full-dog-info h3 { font-size: 1.4rem; color: var(--brown-dark); margin-bottom: 0.25rem; }
.dog-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.dog-tag {
  background: var(--tan-light);
  color: var(--brown-mid);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section { padding: 4rem 1.5rem; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: flex-start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-detail {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--tan-light);
}
.contact-detail strong { display: block; color: var(--brown-dark); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-detail span  { font-size: 0.88rem; color: var(--text-light); }
.contact-note {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--tan-light);
}
.contact-note p { font-size: 0.88rem; margin: 0; }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--tan-light);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--brown-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--tan-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown-mid);
  box-shadow: 0 0 0 3px rgba(107,66,38,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 0.9rem; font-size: 1rem; }

.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.show { display: block; }
.form-success h3 { color: var(--green-dark); margin-bottom: 0.5rem; }

/* ---- FAQ ---- */
.faq-strip { background: var(--white); padding: 4rem 1.5rem; }
.faq-list { margin-top: 2rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq-item { border-bottom: 1px solid var(--tan-light); padding: 1.25rem 0; }
.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-answer {
  font-size: 0.93rem;
  color: var(--text-mid);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; padding-top: 0.75rem; }
.faq-toggle { font-size: 1.2rem; color: var(--brown-light); transition: transform 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: block; }
  .two-col,
  .about-story .container,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .strip-divider { display: none; }
  .litter-banner-inner { flex-direction: column; text-align: center; }
  .badge-circle { margin: 0 auto; }
  .hero-content { margin-left: 1.5rem; }
}

/* ==========================================
   REAL PHOTO STYLES
   ========================================== */

/* Hero background photo */
.hero {
  background-size: cover;
  background-position: center;
}

/* Dog cards on homepage — circular crop */
.dog-card-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.dog-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Parent cards on puppies page */
.parent-photo {
  height: 380px;
  overflow: hidden;
}
.parent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}
.parent-card:hover .parent-photo img {
  transform: scale(1.03);
}

/* Full dog cards on about page */
.full-dog-photo {
  height: 420px;
  overflow: hidden;
}
.full-dog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}
.full-dog-card:hover .full-dog-photo img {
  transform: scale(1.03);
}

/* About page story photo */
.about-photo-real {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo-real img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Clickable dog cards */
.dog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.dog-card-link .dog-card {
  cursor: pointer;
}
.dog-card-link:hover .dog-card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.dog-card-link:hover .dog-card-photo img {
  transform: scale(1.06);
}

/* Landscape photo hero */
.photo-hero {
  background-size: cover;
  background-position: center 60%;
  position: relative;
}
.photo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 15, 5, 0.55);
}
.photo-hero .section-label,
.photo-hero h1,
.photo-hero p {
  position: relative;
  z-index: 1;
}

/* Puppy feature photo on puppies page */
.puppy-feature {
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: center;
}
.puppy-feature-inner {
  text-align: center;
  max-width: 420px;
}
.puppy-feature-inner img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--tan-light);
}
.puppy-caption {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Logo image in header */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Full-width photo strip */
.photo-strip {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.photo-strip-inner {
  width: 100%;
  height: 100%;
}
.photo-strip-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* FAQ feature photo */
.faq-feature-photo {
  max-width: 460px;
  margin: 0 auto 3rem;
  text-align: center;
}
.faq-feature-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--tan-light);
}
.faq-photo-caption {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Breeding goals with photo side by side */
.goals-with-photo {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.goals-photo {
  position: sticky;
  top: 90px;
}
.goals-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--tan-light);
}
.goals-photo-caption {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.6rem;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .goals-with-photo {
    grid-template-columns: 1fr;
  }
  .goals-photo {
    position: static;
  }
}

/* ==========================================
   ABOUT THE BREED PAGE
   ========================================== */
.breed-intro { padding: 4rem 1.5rem; background: var(--cream); }
.breed-intro-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.breed-intro-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.breed-intro-photo.natural-height img {
  height: auto;
  object-fit: unset;
}

.breed-section { padding: 4rem 1.5rem; background: var(--cream); }
.breed-history-section { background: var(--white); }

.breed-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.breed-compare-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 3px solid var(--tan);
}
.breed-compare-item h3 { font-size: 1rem; color: var(--brown-dark); margin-bottom: 0.5rem; }
.breed-compare-item p  { font-size: 0.92rem; margin: 0; }

.breed-activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.breed-activity-item {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--green-mid);
}
.breed-activity-item h3 { font-size: 0.95rem; color: var(--brown-dark); margin-bottom: 0.4rem; }
.breed-activity-item p  { font-size: 0.88rem; margin: 0; }

.breed-right-for-you { background: var(--cream); }
.right-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.right-for-item {
  border-radius: var(--radius);
  padding: 2rem;
}
.right-for-yes {
  background: var(--white);
  border: 2px solid var(--green-mid);
}
.right-for-no {
  background: var(--white);
  border: 2px solid var(--tan);
}
.right-for-item h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.right-for-yes h3 { color: var(--green-dark); }
.right-for-no h3  { color: var(--brown-mid); }
.right-for-item ul { padding-left: 1.25rem; }
.right-for-item li { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 0.5rem; line-height: 1.5; }

.breed-sources {
  background: var(--brown-dark);
  padding: 1.5rem;
  text-align: center;
}
.breed-sources p  { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 0.4rem; }
.breed-sources ul { list-style: none; padding: 0; }
.breed-sources li { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.3rem; }
.breed-sources a  { color: var(--tan); text-decoration: underline; }

@media (max-width: 768px) {
  .right-for-grid { grid-template-columns: 1fr; }
}

/* Hero dog circle inset */
.hero-inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}
.hero-dog-inset {
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.hero-dog-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
@media (max-width: 768px) {
  .hero-inner-wrap { flex-direction: column; padding: 2rem 1.5rem; }
  .hero-dog-inset { width: 180px; height: 180px; margin-top: 2rem; }
}

/* Two puppy photos side by side */
.puppy-feature-pair {
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
}
.puppy-feature-pair .puppy-feature-inner {
  flex: 1;
  max-width: 420px;
}
@media (max-width: 600px) {
  .puppy-feature-pair { flex-direction: column; align-items: center; }
}

/* Oval photo for temperament section */
.oval-photo {
  border-radius: 40% / 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Hide header on scroll down, show on scroll up (mobile only) */
@media (max-width: 768px) {
  header {
    transition: transform 0.3s ease;
  }
  header.header-hidden {
    transform: translateY(-100%);
  }
}

/* Google Maps section */
.map-section {
  padding: 3rem 1.5rem;
  background: var(--cream);
  text-align: center;
}
.map-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}
.map-section p {
  color: var(--brown-mid);
  margin-bottom: 1.5rem;
}
.map-embed {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  overflow: hidden;
}

/* Phone field shake animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-6px); }
  30%       { transform: translateX(6px); }
  45%       { transform: translateX(-5px); }
  60%       { transform: translateX(5px); }
  75%       { transform: translateX(-3px); }
  90%       { transform: translateX(3px); }
}
input.shake {
  animation: shake 0.4s ease;
  border-color: #c0392b !important;
}
.phone-error {
  display: block;
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  font-style: italic;
}
.phone-error.visible {
  opacity: 1;
}
