/* ── Shared Section Header ─────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header__heading {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}
.section-header__subtext {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  opacity: 0.75;
  max-width: 1115px;
  margin-inline: auto;
}

/* ── Be Part of Our Mission ────────────────────── */
.mission {
  background-color: var(--color-white);
  padding: 100px 0;
}
.mission__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}
.mission__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.mission__icon {
  width: 258px;
  height: 240px;
  flex-shrink: 0;
}
.mission__icon svg {
  width: 100%;
  height: 100%;
}
.mission__card-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}
.mission__card-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* ── Adoption Process ──────────────────────────── */
.adoption {
  background-color: var(--color-white);
  padding: 50px 0;
  overflow: hidden;
}
.adoption__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.adoption__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  min-width: 0;
}
.adoption__step-icon {
  width: 100%;
  max-width: 258px;
  flex-shrink: 0;
}
.adoption__step-icon svg {
  width: 100%;
  height: auto;
  max-width: 258px;
  display: block;
}
.adoption__step-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
}
.adoption__step-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
  opacity: 0.8;
}
.adoption__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.adoption__cta-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  opacity: 0.8;
}

/* ── Featured Pets ─────────────────────────────── */
.featured-pets {
  background-color: var(--color-white);
  padding: 100px 0 0;
}
.featured-pets__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 80px;
}
.featured-pets__grid .pet-card {
  flex: 0 0 calc(33.333% - 22px);
  min-width: 0;
}

/* Pet Card */
.pet-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}
.pet-card__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pet-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pet-card__tags {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
}
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
}
.tag--green {
  background-color: var(--color-green);
}
.tag--yellow {
  background-color: #e6a800;
}
.tag--purple {
  background-color: #4a2a7a;
}
.tag--blue {
  background-color: #2a7ab5;
}

.pet-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.pet-card__name {
  font-family: "Maven Pro", var(--font-body), sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}
.pet-card__meta {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text);
  opacity: 0.75;
}
.btn--purple {
  background-color: #4a2a7a;
  color: var(--color-white);
  border-color: #4a2a7a;
}
.btn--purple:hover {
  background-color: #3a2060;
  border-color: #3a2060;
}
.btn--full {
  display: block;
  text-align: center;
  margin-top: auto;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Featured Pets CTA strip */
.featured-pets__cta {
  background-color: var(--color-white);
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.featured-pets__cta-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  opacity: 0.8;
}

/* Label text (Age:, Breed:, Weight:) — normal weight, matches body copy */
.pet-card__label {
  font-weight: 400;
  color: var(--color-text);
  margin-right: 4px;
}

/* Tighter line-height on meta rows */
.pet-card__meta {
  line-height: 1.4;
  margin: 0;
}

/* Yellow star for featured tag */
.tag--featured {
  background: transparent;
  color: #e6a800;
  font-size: 1rem;
  padding: 2px 6px;
  line-height: 1;
}

/* Button margin-top (already set to 10px — confirm this is present) */
.pet-card__body .btn {
  margin-top: 10px;
}

/* ── Footer ────────────────────────────────────── */
.site-footer__wave {
  line-height: 0;
  background-color: var(--color-white);
}
.site-footer__wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__body {
  background-color: #0f5b4d;
  padding: 0 0 30px;
  margin-top: -1px;
}
.site-footer__body .container {
  padding-left: 35px;
  padding-right: 35px;
  max-width: 1728px;
}
.site-footer__two-wrap {
  display: flex;
  gap: 45px;
  width: 700px;
  justify-content: space-between;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
  align-items: start;
}
.site-footer__logo {
  filter: brightness(0) invert(1);
  margin-bottom: 24px;
}
.site-footer__label {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 8px;
  margin-top: 20px;
}
.site-footer__label:first-of-type {
  margin-top: 0;
}
.site-footer__address {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  font-style: normal;
  line-height: 1.8;
}
.site-footer__address a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.site-footer__address a:hover {
  color: var(--color-white);
}
.site-footer__petco {
  margin-top: 28px;
  border-radius: 6px;
  max-width: 110px;
}

.site-footer__col-heading {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}
.site-footer__hours-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
}
.site-footer__hours-list dt {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  white-space: nowrap;
}
.site-footer__hours-list dd {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
.site-footer__social {
  display: flex;
  gap: 16px;
}
.site-footer__social-link {
  color: var(--color-white);
  transition: color 0.2s;
}
.site-footer__social-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 384px;
}
.site-footer__badges img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 100px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 8px;
}

/* Shrink address labels — was 21px, now matches the col-heading size */
.site-footer__label {
  font-size: 0.75rem;
}

/* 25px gap above each clinic heading */
.site-footer__col-heading--spaced {
  padding-top: 40px;
}
/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .adoption__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission__grid {
    gap: 40px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__right {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .section-header__heading {
    font-size: 36px;
  }
  .mission__grid {
    grid-template-columns: 1fr;
  }
  .adoption__steps {
    grid-template-columns: 1fr;
  }
  .featured-pets__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer__right {
    align-items: flex-start;
  }
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 520px) {
  .featured-pets__grid {
    grid-template-columns: 1fr;
  }
}
