/* Final presentation pass: one spacing rhythm, a stronger header mark, and a complete footer. */

:root {
  --ww-section-y: clamp(54px, 7vw, 76px);
  --ww-section-heading-gap: clamp(28px, 4vw, 36px);
  --ww-content-gap: clamp(22px, 3.5vw, 30px);
  --ww-footer-y: clamp(42px, 6vw, 64px);
}

.brand {
  gap: 12px;
  font-size: .88rem;
  line-height: 1.15;
}

.brand-logo {
  width: clamp(52px, 5vw, 64px);
  height: clamp(52px, 5vw, 64px);
}

.nav {
  min-height: 80px;
}

.section {
  padding-block: var(--ww-section-y) !important;
}

#babies {
  padding-top: 0 !important;
  padding-bottom: var(--ww-section-y) !important;
}

#story,
#reserve,
#about,
.detail-section {
  padding-block: var(--ww-section-y) !important;
}

.section-heading {
  margin-bottom: var(--ww-section-heading-gap) !important;
}

.story,
#about {
  gap: var(--ww-content-gap) !important;
}

.adoption-panel {
  margin-top: 0 !important;
  margin-bottom: var(--ww-section-y) !important;
}

.trust-strip {
  margin-bottom: clamp(28px, 4vw, 36px) !important;
}

.divider {
  margin-bottom: clamp(24px, 3vw, 32px) !important;
}

.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 0%, rgb(215 180 173 / .14), transparent 28rem),
    rgb(243 237 228 / .72);
}

.footer-inner {
  width: min(760px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding-block: var(--ww-footer-y) 28px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -.025em;
}

.footer-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-intro {
  max-width: 48ch;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-links {
  gap: 12px 22px;
  margin-top: 28px;
  color: var(--text);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links a,
.footer-social a {
  transition: color .3s ease, transform .3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.footer-social {
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 14px;
  background: rgb(255 253 249 / .7);
  color: var(--green);
  font-size: .78rem;
  font-weight: 700;
}

.footer-meta {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgb(228 219 207 / .85);
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.6;
}

.footer-meta span {
  display: inline-block;
}

.footer-meta span + span::before {
  content: ' · ';
  padding-inline: 5px;
}

@media (max-width: 759px) {
  :root {
    --ww-section-y: 46px;
    --ww-section-heading-gap: 28px;
    --ww-content-gap: 20px;
    --ww-footer-y: 44px;
  }

  .nav {
    min-height: 72px;
  }

  .brand {
    max-width: none;
    gap: 10px;
    font-size: .82rem;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .footer-inner {
    width: min(100% - 36px, 640px);
  }

  .footer-brand {
    gap: 10px;
    font-size: 1.85rem;
  }

  .footer-logo {
    width: 62px;
    height: 62px;
  }

  .footer-links {
    gap: 12px 18px;
  }

  .footer-meta span {
    display: block;
  }

  .footer-meta span + span::before {
    content: '';
    padding: 0;
  }
}
