/* ── focpl-adoptions: adoptions.css ────────────────────────── */

/* ── Landing page ──────────────────────────────────────────── */

/* Hero */
.adopt-hero {
  background: var(--ocpl-blue, #1a5f9e);
  color: #fff;
  padding: 72px 0 64px;
  text-align: center;
}
.adopt-hero__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: 16px;
}
.adopt-hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 8px;
  color: #fff;
}
.adopt-hero__sub {
  font-size: 1.2rem;
  font-style: italic;
  opacity: .9;
  margin-bottom: 28px;
}
.adopt-hero__body {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .93;
}
.adopt-hero__body p { margin-bottom: 12px; }
.adopt-hero__body p:last-child { margin-bottom: 0; }
.adopt-hero__cta {
  background: #fff;
  color: var(--ocpl-blue, #1a5f9e);
  font-weight: 800;
}
.adopt-hero__cta:hover { background: #e8f1fb; color: var(--ocpl-blue, #1a5f9e); }

/* What your adoption supports strip */
.adopt-supports {
  background: #f7f9fc;
  border-top: 1px solid #e5eaf0;
  border-bottom: 1px solid #e5eaf0;
  padding: 40px 0;
}
.adopt-supports__heading {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-mid, #555);
  margin-bottom: 24px;
}
.adopt-supports__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.adopt-supports__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-width: 120px;
}
.adopt-supports__icon {
  font-size: 2rem;
  line-height: 1;
}
.adopt-supports__label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark, #1a2535);
  line-height: 1.3;
  max-width: 110px;
}

/* Spots intro block */
.adopt-spots__intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}
.adopt-spots__sub {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.adopt-spots__body {
  color: var(--text-mid, #555);
  line-height: 1.7;
  margin-bottom: 12px;
}
.adopt-spots__cta-line {
  font-weight: 600;
  color: var(--ocpl-blue, #1a5f9e);
}

.adopt-how {
  background: var(--ocpl-blue-pale, #eef4fb);
}
.adopt-why { background: var(--ocpl-blue-pale, #eef4fb); }
/* Fine print on the quiet utility band, separating the spots grid from
   the closing pale "why" section. */
.adopt-fineprint { background: var(--off-white, #f6f7f9); border-top: 1px solid var(--border, #d8dee6); }
.adopt-how__heading,
.adopt-spots__heading,
.adopt-why h2 {
  text-align: center;
  margin-bottom: 16px;
}
.adopt-why__card {
  background: #fff;
  border: 1px solid #e5eaf0;
  border-radius: 12px;
  padding: 40px 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
@media (max-width: 600px) { .adopt-why__card { padding: 28px 24px; } }
.adopt-why__card p { margin-bottom: 14px; line-height: 1.7; }
.adopt-why__card p:last-child { margin-bottom: 0; }
.adopt-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 700px) {
  .adopt-how__steps { grid-template-columns: 1fr; gap: 24px; }
}
.adopt-how__step {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.adopt-how__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ocpl-blue, #1a5f9e);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.adopt-how__step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.adopt-how__step p {
  font-size: .9rem;
  color: var(--text-mid, #555);
  margin: 0;
}

/* ── Spot grid ───────────────────────────────────────────── */

.adopt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.adopt-card {
  background: #fff;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s;
}
.adopt-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.adopt-card--unavailable { opacity: .75; }
.adopt-card__img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.adopt-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.adopt-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}
.adopt-card__placeholder-icon { font-size: 4rem; }
.adopt-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.adopt-card__name { font-size: 1.1rem; font-weight: 700; margin: 0; }
.adopt-card__tagline { font-size: .85rem; color: var(--text-mid, #555); margin: 0; font-style: italic; }
.adopt-card__btn { margin-top: auto; text-align: center; }
.adopt-card__adopted-badge {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: #b85c8a;
  padding: 4px 10px;
  background: #fdf0f7;
  border-radius: 12px;
}
.adopt-card__view-link {
  display: block;
  font-size: .85rem;
  margin-top: 4px;
  color: var(--ocpl-blue, #1a5f9e);
}
.adopt-empty { text-align: center; color: var(--text-mid, #555); padding: 48px 0; }

/* ── Spot hero ───────────────────────────────────────────── */

.spot-hero { padding: 48px 0; }
.spot-hero__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) {
  .spot-hero__inner { grid-template-columns: 1fr; }
}
.spot-hero__img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.spot-hero__img { width: 100%; display: block; }
.spot-hero__img-placeholder {
  height: 300px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.spot-hero__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ocpl-blue, #1a5f9e);
  margin-bottom: 8px;
}
.spot-hero__name { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.spot-hero__tagline {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid, #555);
  margin-bottom: 12px;
}
.spot-hero__location { font-size: .9rem; color: var(--text-mid, #555); margin-bottom: 16px; }
.spot-hero__description { font-size: .95rem; line-height: 1.6; }
.spot-hero__adopted-notice {
  margin-top: 16px;
  padding: 12px 16px;
  background: #fdf0f7;
  border-left: 3px solid #b85c8a;
  border-radius: 4px;
  font-size: .9rem;
  color: #7a3558;
}

/* ── Adoption checkout form ──────────────────────────────── */

.spot-adopt { background: var(--ocpl-blue-pale, #eef4fb); }
.spot-adopt__heading { margin-bottom: 8px; }
.spot-adopt__sub { color: var(--text-mid, #555); margin-bottom: 32px; }

.spot-adopt__tiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 600px) {
  .spot-adopt__tiers { grid-template-columns: 1fr; }
}
.spot-tier {
  display: block;
  cursor: pointer;
  border: 2px solid var(--border, #e0e0e0);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.spot-tier input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.spot-tier--selected {
  border-color: var(--ocpl-blue, #1a5f9e);
  box-shadow: 0 0 0 3px rgba(26,95,158,.15);
}
.spot-tier__inner { padding: 16px; }
.spot-tier__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.spot-tier__label { font-weight: 700; font-size: .95rem; }
.spot-tier__amount { font-weight: 700; color: var(--ocpl-blue, #1a5f9e); }
.spot-tier__perks { font-size: .8rem; color: var(--text-mid, #555); margin: 0; }
.spot-tier__custom-input {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .9rem;
}
.spot-tier__custom-input input {
  padding: 4px 8px;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 4px;
}

.spot-adopt__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .spot-adopt__fields { grid-template-columns: 1fr; }
}
.spot-adopt__field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.spot-adopt__field input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 6px;
  font-size: .95rem;
}

.spot-adopt__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.spot-adopt__stripe-note { font-size: .78rem; color: var(--text-mid, #777); margin: 0; }
.spot-adopt__error {
  margin-top: 12px;
  padding: 10px 14px;
  background: #fff0f0;
  border-left: 3px solid #c0392b;
  color: #c0392b;
  font-size: .9rem;
  border-radius: 4px;
}
.spot-adopt__loading { margin-top: 12px; color: var(--text-mid, #555); font-size: .9rem; }

/* ── Adopters wall ───────────────────────────────────────── */

.spot-adopters__heading { margin-bottom: 16px; }
.spot-adopters__list { display: flex; flex-wrap: wrap; gap: 8px; }
.spot-adopter-tag {
  padding: 6px 14px;
  background: var(--ocpl-blue-pale, #eef4fb);
  border: 1px solid rgba(26,95,158,.2);
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ocpl-blue, #1a5f9e);
}

/* ── Certificate section ─────────────────────────────────── */

.adopt-cert-wrap { display: flex; flex-direction: column; align-items: center; gap: 20px; }
#adopt-cert-canvas {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.adopt-cert-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ── Confirm summary card ────────────────────────────────── */

.adopt-confirm-card {
  display: flex;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 10px;
  padding: 28px;
  align-items: flex-start;
}
@media (max-width: 600px) { .adopt-confirm-card { flex-direction: column; } }
.adopt-confirm-card__img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.adopt-confirm-card__name { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.adopt-confirm-card__body p { margin: 4px 0; font-size: .95rem; }

/* ── Spot catalog ────────────────────────────────────────── */

.spot-catalog { background: #fff; }
.spot-catalog__header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.spot-catalog__heading { font-size: 1.3rem; margin: 0; }
.spot-catalog__see-all { font-size: .82rem; font-weight: 600; color: #005685; text-decoration: none; margin-left: auto; white-space: nowrap; }
.spot-catalog__see-all:hover { text-decoration: underline; }
.spot-catalog__empty { text-align: center; padding: 40px 20px; color: #888; font-style: italic; }
.spot-catalog__empty a { color: #005685; }

.spot-catalog .bib-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.spot-catalog .bib-card { background: #fff; border: 1px solid #e5eaf0; border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .15s; }
.spot-catalog .bib-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.spot-catalog .bib-card__cover { position: relative; background: #f0f4f8; aspect-ratio: 2/3; overflow: hidden; }
.spot-catalog .bib-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spot-catalog .bib-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; font-weight: 900; color: rgba(0,86,133,.18); background: linear-gradient(135deg,#e8f0fe,#f0f6fa); }
.spot-catalog .bib-card__format-badge { position: absolute; top: 8px; left: 8px; font-size: .65rem; font-weight: 700; padding: 2px 7px; border-radius: 10px; background: rgba(10,35,66,.75); color: #fff; backdrop-filter: blur(4px); }
.spot-catalog .bib-card__body { padding: 12px 12px 10px; flex: 1; display: flex; flex-direction: column; }
.spot-catalog .bib-card__title { font-size: .85rem; font-weight: 700; color: #1a2535; line-height: 1.35; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.spot-catalog .bib-card__author { font-size: .75rem; color: #667; line-height: 1.3; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.spot-catalog .bib-card__link { margin-top: auto; display: block; text-align: center; padding: 7px; background: #005685; color: #fff; font-size: .75rem; font-weight: 700; text-decoration: none; border-radius: 5px; transition: background .15s; }
.spot-catalog .bib-card__link:hover { background: #004470; color: #fff; }

/* ── Social share ────────────────────────────────────────── */

.adopt-share { background: var(--ocpl-blue-pale, #eef4fb); }
.adopt-share__heading { margin-bottom: 8px; }
.adopt-share__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.adopt-share__btn { text-decoration: none; font-weight: 600; font-size: .9rem; padding: 10px 20px; border-radius: 6px; }
.adopt-share__btn--twitter { background: #1da1f2; color: #fff; }
.adopt-share__btn--twitter:hover { background: #0d8fd8; color: #fff; }
.adopt-share__btn--facebook { background: #1877f2; color: #fff; }
.adopt-share__btn--facebook:hover { background: #0d65d8; color: #fff; }

/* ============================================================
   FOCPL Adoptions — v1.1 polish layer (appended)
   Preserves class names; tightens hero, grid, tier selection,
   certificate, and catalog visuals.
   ============================================================ */

/* ── Hero: subtle gradient overlay for depth ────────────────── */
.adopt-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(255,255,255,.08), transparent 50%),
    var(--ocpl-blue, #1a5f9e);
}
.adopt-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,.15), transparent);
  pointer-events: none;
}
.adopt-hero__title,
.adopt-hero__sub,
.adopt-hero__body,
.adopt-hero__cta { position: relative; z-index: 1; }
.adopt-hero__cta {
  transition: transform .15s ease, box-shadow .2s ease, background .15s;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.adopt-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

/* ── Supports strip: icons with softer background ───────────── */
.adopt-supports__item {
  padding: 14px 10px;
  border-radius: var(--radius-md, 10px);
  transition: background .18s ease;
}
.adopt-supports__item:hover { background: rgba(0,86,133,.04); }
.adopt-supports__icon {
  font-size: 2.2rem;
  filter: grayscale(0.15);
  transition: transform .25s ease, filter .25s ease;
}
.adopt-supports__item:hover .adopt-supports__icon {
  transform: scale(1.12);
  filter: grayscale(0);
}

/* ── How-it-works steps: connector line (desktop) ───────────── */
.adopt-how__steps {
  position: relative;
}
@media (min-width: 701px) {
  .adopt-how__steps::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 44px;
    height: 2px;
    background: linear-gradient(90deg,
      transparent,
      color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 30%, transparent) 15%,
      color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 30%, transparent) 85%,
      transparent);
    z-index: 0;
  }
}
.adopt-how__step {
  position: relative;
  z-index: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}
.adopt-how__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.09);
}
.adopt-how__step-num {
  box-shadow: 0 2px 8px rgba(26,95,158,.28);
}

/* ── Spot cards: refined media + focus ──────────────────────── */
.adopt-card {
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.adopt-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 40%, var(--border, #e0e0e0)); }
.adopt-card__img { transition: transform .4s ease; }
.adopt-card:hover .adopt-card__img { transform: scale(1.05); }

.adopt-card__img-placeholder {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8eef3 100%);
}
.adopt-card__placeholder-icon {
  opacity: 0.45;
  filter: grayscale(0.4);
}

.adopt-card__adopted-badge {
  box-shadow: 0 1px 3px rgba(184,92,138,.2);
  letter-spacing: .04em;
}

.adopt-card__btn:focus-visible {
  outline: 3px solid var(--ocpl-blue, #1a5f9e);
  outline-offset: 3px;
}

/* ── Spot hero: polished image frame ────────────────────────── */
.spot-hero__img-wrap {
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  transition: box-shadow .3s ease;
}
.spot-hero__img-wrap:hover { box-shadow: 0 12px 40px rgba(0,0,0,.22); }

.spot-hero__eyebrow {
  display: inline-block;
  padding: 3px 10px;
  background: color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 10%, transparent);
  border-radius: 999px;
}

.spot-hero__name { line-height: 1.15; letter-spacing: -0.01em; }

/* ── Adopter notice: refined look ───────────────────────────── */
.spot-hero__adopted-notice {
  background: linear-gradient(90deg, #fdf0f7, #fef6fa);
  border-left-width: 4px;
}

/* ── Tier radios: stronger selected + hover states ──────────── */
.spot-tier {
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.spot-tier:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 40%, var(--border, #e0e0e0)); }
.spot-tier--selected { transform: translateY(-2px); }
.spot-tier input[type="radio"]:focus-visible + .spot-tier__inner {
  outline: 3px solid var(--ocpl-blue, #1a5f9e);
  outline-offset: 3px;
  border-radius: 6px;
}

.spot-tier__amount {
  font-size: 1.15rem;
  font-weight: 800;
}

.spot-tier__custom-input input {
  transition: border-color .15s, box-shadow .15s;
}
.spot-tier__custom-input input:focus {
  border-color: var(--ocpl-blue, #1a5f9e);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 22%, transparent);
  outline: none;
}

/* ── Adopt fields: unified focus ────────────────────────────── */
.spot-adopt__field input {
  transition: border-color .15s, box-shadow .15s;
}
.spot-adopt__field input:focus {
  outline: none;
  border-color: var(--ocpl-blue, #1a5f9e);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 18%, transparent);
}

.spot-adopt__error { animation: adoptShake .35s ease; border-radius: 6px; }
@keyframes adoptShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.spot-adopt__loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.spot-adopt__loading::before {
  content: '';
  width: 14px; height: 14px;
  border: 2px solid color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 30%, transparent);
  border-top-color: var(--ocpl-blue, #1a5f9e);
  border-radius: 50%;
  animation: adoptSpin 0.7s linear infinite;
}
@keyframes adoptSpin { to { transform: rotate(360deg); } }

/* ── Adopters wall: tag motion ──────────────────────────────── */
.spot-adopter-tag {
  transition: background .18s, transform .15s, box-shadow .18s;
}
.spot-adopter-tag:hover {
  transform: translateY(-1px);
  background: color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 10%, #fff);
  box-shadow: 0 2px 8px rgba(26,95,158,.12);
}

/* ── Certificate frame polish ───────────────────────────────── */
#adopt-cert-canvas {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  box-shadow:
    0 1px 3px rgba(0,0,0,.06),
    0 8px 28px rgba(0,0,0,.12),
    inset 0 0 0 1px rgba(255,255,255,.8);
}

/* ── Confirm card: softer background + media ────────────────── */
.adopt-confirm-card {
  background: linear-gradient(180deg, #fff 0%, #fafcfe 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.adopt-confirm-card__img {
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.adopt-confirm-card__name { line-height: 1.2; }

/* ── Catalog bib-cards: refined typography ──────────────────── */
.spot-catalog .bib-card {
  transition: box-shadow .2s ease, transform .15s ease;
}
.spot-catalog .bib-card__placeholder {
  letter-spacing: -0.02em;
}
.spot-catalog .bib-card__format-badge {
  text-transform: uppercase;
  letter-spacing: .04em;
}
.spot-catalog .bib-card__link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -3px;
}

/* ── Share buttons: hover motion ────────────────────────────── */
.adopt-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .15s, transform .15s, box-shadow .2s;
}
.adopt-share__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,.14);
}

/* ── Empty state: friendlier ────────────────────────────────── */
.adopt-empty {
  background: #fafcfe;
  border: 1px dashed color-mix(in srgb, var(--ocpl-blue, #1a5f9e) 25%, #dde3e9);
  border-radius: 10px;
  font-size: .95rem;
}

/* ── Why card: subtle backdrop accent ───────────────────────── */
.adopt-why__card {
  background: linear-gradient(180deg, #fff 0%, #fdfefe 100%);
  position: relative;
}
.adopt-why__card::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--ocpl-orange, #b56016), var(--ocpl-blue, #1a5f9e));
  border-radius: 0 0 3px 3px;
}

/* ── Reduced motion ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .adopt-card:hover .adopt-card__img,
  .adopt-card:hover,
  .adopt-how__step:hover,
  .spot-tier:hover,
  .adopt-hero__cta:hover,
  .adopt-share__btn:hover,
  .spot-adopter-tag:hover { transform: none !important; }
  .spot-adopt__error, .spot-adopt__loading::before { animation: none !important; }
  .spot-adopt__loading::before { border-top-color: transparent; }
}

/* ── High-contrast sharpening ───────────────────────────────── */
@media (prefers-contrast: more) {
  .adopt-card, .spot-tier { border-width: 2px; }
  .spot-tier--selected { outline: 2px solid var(--ocpl-blue, #1a5f9e); }
}

/* ── Naming Rites additions ─────────────────────────────── */
.adopt-card__price {
  font-family: var(--font-heading, sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ocpl-blue, #005685);
  margin: 0 0 2px;
}
.spot-hero__price-line {
  font-size: 1.02rem;
  margin-top: 14px;
}
.spot-adopt__field--wide {
  grid-column: 1 / -1;
}
.spot-adopt__disclaimer {
  font-size: .82rem;
  color: var(--text-mid, #555);
  max-width: 640px;
  margin: 22px auto 0;
  text-align: center;
}

/* ── Reviewed pass: status line, filters, named cards, spot-page form ── */
.adopt-status { text-align: center; font-size: .95rem; color: var(--text-mid, #5b6470); margin: 0 0 18px; }
.adopt-status strong { color: var(--ocpl-blue, #005685); }
.adopt-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0 0 26px; }
.adopt-filter {
  background: #fff;
  border: 1px solid var(--border, #d8dee6);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--ocpl-blue, #005685);
  cursor: pointer;
}
.adopt-filter:hover { border-color: var(--ocpl-blue, #005685); }
.adopt-filter--active { background: var(--ocpl-blue, #005685); border-color: var(--ocpl-blue, #005685); color: #fff; }
.adopt-card__min { font-size: .72rem; font-weight: 600; color: var(--text-mid, #5b6470); text-transform: uppercase; letter-spacing: .04em; }
.adopt-card__given-name { font-family: Georgia, serif; font-style: italic; color: var(--ocpl-blue-dark, #003f63); margin: 4px 0 10px; font-size: .95rem; }
.spot-adopt__hint { margin: 5px 0 0; font-size: .8rem; color: var(--text-mid, #5b6470); line-height: 1.5; }
.spot-adopt__optional { font-weight: 400; color: var(--text-mid, #5b6470); }
.spot-adopt__counter { float: right; font-weight: 400; font-size: .78rem; color: var(--text-mid, #5b6470); font-variant-numeric: tabular-nums; }
.spot-next { background: var(--off-white, #f6f7f9); border-top: 1px solid var(--border, #d8dee6); }
.spot-next__heading { text-align: center; font-size: 1.4rem; margin: 0 0 18px; }
.spot-next__steps {
  max-width: 560px;
  margin: 0 auto 20px;
  padding-left: 22px;
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text, #1a1a1a);
}
.spot-next__steps li { margin-bottom: 8px; }
