/* ─── Pocket Rotties — Shared Styles ─── */

:root {
  --bark: #2A1F17;
  --cream: #F5F0EB;
  --gold: #C9A96E;
  --gold-light: #D4BC8B;
  --sage: #7A8B6F;
  --charcoal: #1A1A1A;
  --warm-white: #FAF8F5;
  --rose: #B07D6A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--charcoal); background: var(--warm-white); line-height: 1.7; }
img { max-width: 100%; display: block; }

/* ─── NAV ─── */
.site-nav { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 5vw; background: var(--bark); }
.site-nav .brand { font-family: 'DM Serif Display', serif; color: #fff; font-size: 1.2rem; text-decoration: none; }
.site-nav .back-link { color: var(--gold-light); font-size: 0.82rem; text-decoration: none; font-weight: 500; letter-spacing: 0.03em; }
.site-nav .back-link:hover { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn { display: inline-block; padding: 0.85rem 2.2rem; background: var(--gold); color: var(--bark); font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: all 0.3s ease; }
.btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); margin-left: 0.8rem; }
.btn-outline:hover { background: var(--gold); color: var(--bark); }

/* ─── CALLOUT ─── */
.callout { background: var(--cream); border-left: 3px solid var(--gold); padding: 1.2rem 1.5rem; margin: 1.5rem 0; border-radius: 0 4px 4px 0; }
.callout p { margin-bottom: 0; color: #4a4a4a; font-size: 0.95rem; }

/* ─── SOURCES ─── */
.sources { background: var(--cream); padding: 3rem 2rem; }
.sources-inner { max-width: 720px; margin: 0 auto; }
.sources h2 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--bark); margin-bottom: 1rem; }
.sources p, .sources a { font-size: 0.9rem; line-height: 1.8; color: #555; }
.sources a { color: var(--gold); text-decoration: underline; }
.source-item { margin-bottom: 0.8rem; }

/* ─── PROTOCOL HERO ─── */
.protocol-hero { background: var(--bark); padding: 4rem 2rem 3.5rem; text-align: center; }
.protocol-hero .timing { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.8rem; }
.protocol-hero h1 { font-family: 'DM Serif Display', serif; color: #fff; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.6rem; }
.protocol-hero .attribution { color: rgba(255,255,255,0.6); font-size: 0.9rem; font-style: italic; }

/* ─── PROTOCOL CONTENT ─── */
.protocol-content { max-width: 720px; margin: 0 auto; padding: 3rem 2rem 4rem; }
.protocol-content h2 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--bark); margin: 2.5rem 0 1rem; }
.protocol-content h2:first-of-type { margin-top: 0; }
.protocol-content p { color: #4a4a4a; font-size: 1rem; line-height: 1.9; margin-bottom: 1.2rem; }
.protocol-content ul, .protocol-content ol { color: #4a4a4a; font-size: 1rem; line-height: 1.9; margin: 0 0 1.2rem 1.5rem; }
.protocol-content li { margin-bottom: 0.5rem; }
.protocol-content strong { color: var(--bark); }
.protocol-content em { color: #666; }

/* ─── PROTOCOL CTA ─── */
.protocol-cta { text-align: center; padding: 3rem 2rem; }
.protocol-cta p { color: #666; font-size: 0.95rem; margin-bottom: 1.2rem; }

/* ─── PARENT PAGES (Luna/Archie) ─── */
.parent-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
}
.parent-hero-photo { min-height: 400px; background-size: cover; background-position: center; }
.parent-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4rem;
  background: var(--bark);
}
.parent-hero-text .breed-label { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.6rem; }
.parent-hero-text h1 { font-family: 'DM Serif Display', serif; color: #fff; font-size: clamp(2.4rem, 5vw, 3.2rem); margin-bottom: 1rem; }
.parent-hero-text p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.85; }

.content { max-width: 720px; margin: 0 auto; padding: 3rem 2rem 4rem; }
.content h2 { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--bark); margin: 2.5rem 0 1rem; }
.content h2:first-of-type { margin-top: 0; }
.content p { color: #4a4a4a; font-size: 1rem; line-height: 1.9; margin-bottom: 1.2rem; }
.content strong { color: var(--bark); }
.content a { color: var(--gold); text-decoration: underline; }
.content a:hover { color: var(--bark); }

.breeder-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.breeder-list li { padding: 0.8rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.95rem; color: #4a4a4a; }
.breeder-list li a { color: var(--gold); text-decoration: none; font-weight: 500; }
.breeder-list li a:hover { text-decoration: underline; }
.breeder-list li .location { color: #888; font-size: 0.85rem; }

/* ─── FOOTER ─── */
footer { background: var(--bark); color: rgba(255,255,255,0.6); text-align: center; padding: 2.5rem 2rem; font-size: 0.85rem; }
footer a { color: var(--gold); text-decoration: none; }
footer .brand { font-family: 'DM Serif Display', serif; color: #fff; font-size: 1.2rem; margin-bottom: 0.4rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .parent-hero { grid-template-columns: 1fr; }
  .parent-hero-text { padding: 2.5rem 2rem; }
  .parent-hero-photo { min-height: 300px; }
  .content { padding: 2rem 1.5rem 3rem; }
  .protocol-content { padding: 2rem 1.5rem 3rem; }
}
