/* Urban Hero Poodles — Shared Stylesheet */

:root {
  --bg:          #0d0d0d;
  --surface:     #171717;
  --surface2:    #1f1f1f;
  --border:      #2a2a2a;
  --gold:        #c9a65a;
  --gold-light:  #e0c07a;
  --gold-dim:    #7a6030;
  --text:        #e8e0d0;
  --muted:       #888;
  --nav-h:       72px;
  --r:           8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

/* ── Typography ─────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--gold); font-weight: 600; }

/* ── Layout ─────────────────────────────────────── */

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

.section { padding: 80px 0; }
.section--tight { padding: 52px 0; }
.section--dark { background: var(--surface); }
.section--darker { background: var(--surface2); }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 48px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 40px;
}

/* ── Logo Bar ────────────────────────────────────── */

.logo-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 24px 24px 18px;
}

.logo-bar__img {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 12px;
  box-shadow: 0 0 0 3px var(--gold-dim), 0 4px 24px rgba(0,0,0,0.5);
}

.logo-bar__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 6px;
}

.logo-bar__tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Nav ─────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav__logo span { color: var(--gold); font-weight: 700; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--gold); }

.nav__links .btn-nav {
  background: var(--gold);
  color: #0d0d0d;
  padding: 9px 20px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.nav__links .btn-nav:hover { background: var(--gold-light); color: #0d0d0d; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Buttons ─────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #0d0d0d;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: #0d0d0d;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #0d0d0d;
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}

.hero__split {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 580px;
}

.hero__left {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
  padding: 80px 60px 80px 80px;
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.hero__left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--bg), transparent);
  z-index: 3;
  pointer-events: none;
}

.hero__right {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.hero__right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero__brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero__brand span {
  color: var(--gold);
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero__title { margin-bottom: 20px; color: #fff; }

.hero__sub {
  font-size: 1.1rem;
  color: rgba(232, 224, 208, 0.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ── Announcement Banner ─────────────────────────── */

.announcement {
  background: linear-gradient(135deg, #1a1500 0%, #1f1a00 50%, #1a1500 100%);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding: 36px 0;
}

.announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.announcement__badge {
  background: var(--gold);
  color: #0d0d0d;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
  display: inline-block;
}

.announcement__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.announcement__text {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.countdown {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.countdown__unit {
  text-align: center;
  background: rgba(201, 166, 90, 0.08);
  border: 1px solid var(--gold-dim);
  border-radius: var(--r);
  padding: 14px 18px;
  min-width: 70px;
}

.countdown__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.countdown__label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Cards ─────────────────────────────────────────── */

.card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.card__body { padding: 24px; }
.card__label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card__text { color: var(--muted); font-size: 0.9rem; }

/* ── Dog Grid ────────────────────────────────────── */

.dog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

/* ── Health Callout ──────────────────────────────── */

.health-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.health-tests {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.test-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.test-badge::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Stats Row ───────────────────────────────────── */

.stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.stat__label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ── Litter Dashboard ────────────────────────────── */

.litter-hero {
  background: linear-gradient(135deg, var(--surface) 0%, #1a1500 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 48px;
}

.litter-pair {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.litter-pair__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

.litter-pair__x {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: var(--gold-dim);
  flex-shrink: 0;
}

.litter-pair__info h3 { margin-bottom: 4px; }
.litter-pair__info p { color: var(--muted); font-size: 0.9rem; margin: 0; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pill--expecting {
  background: rgba(201, 166, 90, 0.12);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}

.status-pill--born {
  background: rgba(80, 200, 120, 0.12);
  border: 1px solid rgba(80, 200, 120, 0.4);
  color: #50c878;
}

.status-pill--dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.puppy-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
}

.puppy-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r);
  margin-bottom: 12px;
  background: var(--border);
}

.puppy-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.puppy-card__meta { font-size: 0.8rem; color: var(--muted); }

.puppy-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: var(--surface2);
  border: 2px dashed var(--border);
  border-radius: var(--r);
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 2rem;
}

.weight-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.weight-table th,
.weight-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.weight-table th {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--surface);
}

.weight-table tr:hover td { background: rgba(201, 166, 90, 0.04); }

/* ── Footer ──────────────────────────────────────── */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 52px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer__desc { color: var(--muted); font-size: 0.875rem; }

.footer__col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: inherit;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { color: rgba(232, 224, 208, 0.7); font-size: 0.875rem; }
.footer__col ul a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy { color: var(--muted); font-size: 0.8rem; }
.footer__badges { display: flex; gap: 12px; flex-wrap: wrap; }

.badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 900px) {
  .health-callout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .hero__split { flex-direction: column; min-height: auto; }
  .hero__left { flex: none; padding: 48px 24px 40px; }
  .hero__left::after { display: none; }
  .hero__right { flex: none; height: 260px; }
  .hero__right::before { background: linear-gradient(to bottom, var(--bg) 0%, transparent 40%); }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--surface);
    padding: 40px 24px;
    gap: 24px;
    align-items: flex-start;
  }
  .nav__links.open a { font-size: 1.1rem; }
  .announcement__inner { flex-direction: column; align-items: flex-start; }
  .countdown { gap: 12px; }
  .stats { gap: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .litter-pair { gap: 20px; }
  .health-tests { grid-template-columns: 1fr; }
}

/* ── Utilities ──────────────────────────────────── */

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .two-col { grid-template-columns: 1fr; } }
