:root {
  --purple: #7427dc;
  --purple-dark: #32106f;
  --purple-soft: #efe7ff;
  --blue: #5279ff;
  --blue-soft: #eaf0ff;
  --pink: #ff6fc9;
  --ink: #201448;
  --muted: #655c8d;
  --line: #ded4ff;
  --paper: #ffffff;
  --shadow: 0 18px 50px rgba(68, 31, 132, .14);
  --shadow-soft: 0 10px 26px rgba(68, 31, 132, .1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, .95) 0 34%, rgba(238, 231, 255, .74) 34% 52%, rgba(255, 255, 255, .92) 52% 100%),
    linear-gradient(180deg, #fff 0%, #f8f4ff 42%, #f4f0ff 100%);
  font: 16px/1.62 Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 210px auto auto 50%;
  z-index: -1;
  width: min(780px, 88vw);
  aspect-ratio: 1.9;
  background: url("../img/adorno-huellas.webp") center / contain no-repeat;
  opacity: .14;
  transform: translateX(-50%) rotate(-4deg);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  right: -90px;
  top: 520px;
  z-index: -1;
  width: min(440px, 58vw);
  aspect-ratio: 1.9;
  background: url("../img/adorno-huellas.webp") center / contain no-repeat;
  opacity: .1;
  transform: rotate(12deg);
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 4.45vw, 5rem);
  font-weight: 900;
}

h1 span,
h2 span {
  color: var(--purple);
}

h1 em,
h2 em {
  color: var(--blue);
  font-style: normal;
}

h2 {
  margin-bottom: .9rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 900;
}

h3 {
  margin-bottom: .5rem;
  font-size: 1.05rem;
  font-weight: 900;
}

p {
  color: var(--muted);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: 62px;
}

#publicaciones-conectadas {
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px max(22px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(116, 39, 220, .08);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(35, 14, 82, .05);
}

.brand {
  display: flex;
  align-items: center;
  width: 255px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.main-nav a:not(.social-button) {
  min-height: 40px;
  padding: .58rem .9rem;
  border-radius: 999px;
  color: #1f1750;
  font-weight: 900;
}

.main-nav a:not(.social-button):hover,
.main-nav a.active {
  color: var(--purple);
  background: #f2ebff;
}

.social-button {
  box-sizing: border-box;
  display: inline-grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  min-width: 42px;
  max-width: 42px;
  height: 42px;
  aspect-ratio: 1;
  padding: 2px 0 0 1px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8b20ff, #4f79ff);
  box-shadow: 0 12px 26px rgba(116, 39, 220, .26);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: .75rem;
  color: #9c94bb;
  font-size: .78rem;
  font-weight: 900;
}

.language-switch a {
  color: #9c94bb;
}

.language-switch a.active {
  color: var(--purple);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .78rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: var(--purple);
  box-shadow: 0 13px 28px rgba(116, 39, 220, .24);
  font-weight: 900;
  transition: transform .16s ease, box-shadow .16s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 17px 34px rgba(116, 39, 220, .3);
}

.button-primary {
  background: linear-gradient(135deg, #8f20ff, #7527df 54%, #5279ff);
}

.button-secondary-solid {
  color: var(--purple);
  border-color: rgba(116, 39, 220, .45);
  background: #fff;
  box-shadow: 0 10px 24px rgba(70, 36, 126, .08);
}

.button-light {
  color: var(--purple);
  background: #fff;
}

.button-small {
  width: 100%;
  min-height: 40px;
  padding: .62rem .9rem;
  font-size: .9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .75rem;
  color: var(--blue);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow span,
.section-kicker span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8f20ff, #5279ff);
  box-shadow: 0 8px 18px rgba(116, 39, 220, .22);
}

.eyebrow span.pink-heart-icon,
.section-kicker span.pink-heart-icon {
  position: relative;
  width: 32px;
  height: 32px;
  background: rgba(255, 98, 215, .75);
  box-shadow: 0 10px 20px rgba(255, 98, 215, .2);
}

.eyebrow span.pink-heart-icon::before,
.section-kicker span.pink-heart-icon::before {
  content: "♡";
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-46%, -48%);
}

.eyebrow span svg,
.section-kicker span svg {
  display: block;
  width: 17px;
  height: 17px;
  color: #fff;
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(1px);
}

.eyebrow span.icon-nudge-right svg,
.section-kicker span.icon-nudge-right svg {
  transform: translate(.5px, 1px);
}

.eyebrow span.pink-heart-icon svg,
.section-kicker span.pink-heart-icon svg {
  display: none;
  transform: none;
}

.eyebrow span svg *,
.section-kicker span svg * {
  fill: none;
  stroke: #fff;
}

.hero {
  --hero-content-x: max(22px, calc((100vw - var(--container)) / 2));
  --hero-media-left: max(14px, calc((100vw - var(--container)) / 2 - 58px));
  --hero-media-right: var(--hero-media-left);
  position: relative;
  min-height: 620px;
  padding: 64px var(--hero-content-x) 72px;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 24px var(--hero-media-right) 0 var(--hero-media-left);
  z-index: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero::after {
  display: none;
}

.hero-picture {
  position: absolute;
  inset: 24px var(--hero-media-right) 0 var(--hero-media-left);
  z-index: 1;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  clip-path: inset(0 round 28px);
}

.hero-picture img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 475px;
}

.hero h1 {
  font-size: clamp(2.7rem, 4.05vw, 4.35rem);
}

.hero-home h1 {
  line-height: .98;
}

.hero-home h1 span {
  font-family: Nunito, Manrope, system-ui, sans-serif;
  font-weight: 800;
}

.hero-home h1 em {
  display: inline-block;
  font-family: "Segoe Script", "Brush Script MT", "Comic Sans MS", cursive;
  font-size: .88em;
  font-weight: 900;
  line-height: .95;
}

.hero-copy p:not(.eyebrow) {
  max-width: 390px;
  color: #4f4974;
  font-size: .98rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.65rem;
}

.donations-hero {
  --donations-hero-content-x: max(48px, calc((100vw - var(--container)) / 2 + 36px));
  --donations-hero-media-left: max(20px, calc((100vw - var(--container)) / 2));
  --donations-hero-media-right: var(--donations-hero-media-left);
  position: relative;
  min-height: 720px;
  padding: 86px var(--donations-hero-content-x) 54px;
  overflow: visible;
}

.donations-hero::after {
  display: none;
}

.donations-hero-picture {
  position: absolute;
  inset: 24px var(--donations-hero-media-right) 0 var(--donations-hero-media-left);
  z-index: 0;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  clip-path: inset(0 round 28px);
  background-color: #160735;
  background-image: url("../img/donaciones.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: var(--shadow);
}

.donations-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}

.donations-hero-kicker {
  margin-bottom: .75rem;
  color: #fff;
}

.donations-hero-title {
  max-width: 520px;
  margin-bottom: 1.35rem;
  color: #fff;
  font-size: clamp(2.9rem, 5.3vw, 5rem);
  line-height: .92;
  text-shadow: 0 8px 24px rgba(20, 8, 55, .18);
}

.donations-hero-title span {
  display: block;
  color: #fff;
  font-family: Nunito, Manrope, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: .01em;
}

.donations-hero-title em {
  position: relative;
  display: inline-block;
  color: #ff62d7;
  font-family: "Segoe Script", "Brush Script MT", "Comic Sans MS", cursive;
  font-size: .82em;
  font-weight: 900;
  line-height: .95;
  text-shadow: 0 8px 22px rgba(255, 98, 215, .16);
}

.donations-hero-lead {
  max-width: 420px;
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.48;
}

.donations-hero-points {
  display: grid;
  gap: .9rem;
}

.donations-hero-points article {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 1rem;
}

.donations-hero-points article > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #8f20ff, #6e50ff);
  box-shadow: 0 14px 30px rgba(86, 34, 168, .32);
}

.donations-hero-points svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.donations-hero-points strong {
  display: block;
  color: #ff62d7;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.15;
}

.donations-hero-points p,
.donations-hero-help p {
  max-width: 36ch;
  margin: .15rem 0 0;
  color: #fff;
  font-weight: 650;
  line-height: 1.4;
}

.donations-hero-help {
  margin-top: 1.45rem;
}

.donations-hero-help strong {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.donations-hero-help strong span {
  color: #ff62d7;
  font-size: 1.8rem;
  line-height: 1;
}

.donations-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.15rem;
}

.donations-hero-actions .button {
  min-height: 46px;
  padding: .72rem 1.15rem;
}

.donation-button-pink {
  background: linear-gradient(135deg, #ff62d7, #e64bbd);
  box-shadow: 0 13px 28px rgba(255, 98, 215, .26);
}

.donation-button-blue {
  background: linear-gradient(135deg, #2e9bff, #126de6);
  box-shadow: 0 13px 28px rgba(46, 145, 255, .26);
}

.donation-button-blue svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(var(--impact-count, 5), minmax(0, 1fr));
  gap: 0;
  margin-top: -18px;
  padding: 12px;
  border: 1px solid rgba(116, 39, 220, .13);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow);
}

.impact-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 74px;
  padding: 10px 14px;
  border-right: 1px solid #e8e0ff;
}

.impact-strip article:last-child {
  border-right: 0;
}

.impact-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
  width: fit-content;
  max-width: 100%;
}

.impact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--purple);
  background: #f4eeff;
  font-size: 1.55rem;
  font-weight: 900;
}

.impact-strip strong {
  display: block;
  color: var(--purple);
  font-size: 1.05rem;
  font-weight: 900;
}

.impact-strip article:first-child strong {
  color: var(--blue);
}

.impact-strip small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.12;
}

.impact-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 46px;
  text-align: left;
}

.impact-strip article[data-impact-key="adoptions"] .impact-copy {
  transform: translateY(3px);
}

.impact-icon svg,
.method-grid svg,
.help-grid svg,
.support-grid svg,
.donation-impact-grid svg {
  width: 1.65em;
  height: 1.65em;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: 28px;
  align-items: start;
  padding-block: 58px;
}

.split-section > div,
.timeline-panel {
  height: 100%;
}

.method-title,
.timeline-title,
.adoption-title,
.help-title,
.adoptions-title,
.donation-impact-title,
.contact-title {
  line-height: 1;
}

.method-title span,
.timeline-title span,
.adoption-title span,
.help-title span,
.adoptions-title span,
.donation-impact-title span,
.contact-title span {
  font-family: Nunito, Manrope, system-ui, sans-serif;
}

.method-title span,
.adoption-title span,
.help-title span,
.donation-impact-title span {
  font-weight: 700;
}

.timeline-title span {
  font-weight: 600;
}

.adoptions-title span,
.contact-title span {
  font-weight: 800;
}

.method-title em,
.timeline-title em,
.adoption-title em,
.help-title em,
.adoptions-title em,
.donation-impact-title em,
.contact-title em {
  display: inline-block;
  font-family: "Segoe Script", "Brush Script MT", "Comic Sans MS", cursive;
  font-size: .88em;
  font-weight: 900;
  line-height: .95;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.method-grid article,
.timeline-panel,
.adoption-empty,
.pet-card,
.support-grid article,
.donation-impact-grid article,
.contact-form,
.contact-card,
.adoption-note {
  border: 1px solid rgba(116, 39, 220, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.method-grid article {
  padding: 22px 16px;
  text-align: center;
}

.method-grid article > span,
.help-grid article > span,
.support-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: .9rem;
  border: 3px solid #efe7ff;
  border-radius: 50%;
  color: var(--purple);
  background: #fff;
  box-shadow: inset 0 0 0 2px #d9ccff;
  font-size: 1.7rem;
  font-weight: 900;
}

.method-grid p,
.help-grid p,
.support-grid p {
  margin-bottom: 0;
  font-size: .88rem;
}

.timeline-panel {
  padding: 28px;
  align-self: stretch;
}

.timeline-panel h2 {
  font-size: 2rem;
}

.timeline-panel ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-panel li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: .75rem;
  align-items: center;
  padding: .8rem;
  border-radius: 14px;
  background: #f7f2ff;
  color: var(--ink);
  font-weight: 900;
}

.timeline-panel b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.donation-ribbon,
.adoption-ribbon {
  display: grid;
  align-items: center;
  gap: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.donation-ribbon {
  grid-template-columns: 180px 1fr auto;
  min-height: 116px;
  padding: 18px 28px;
  color: #fff;
  background: linear-gradient(135deg, #8a45ff, #7427dc 48%, #5791ff);
}

.donation-ribbon img {
  width: 170px;
  margin-bottom: -18px;
}

.donation-ribbon h2 {
  margin: 0;
  color: #fff;
  font-family: Nunito, Manrope, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 700;
}

.donation-ribbon.donation-page-ribbon {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 200px;
  margin-top: 8px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #8a45ff, #7427dc 48%, #5791ff);
  box-shadow: var(--shadow);
}

.donation-ribbon.donation-page-ribbon h3 {
  margin: 0;
  color: #fff;
  font-family: Nunito, Manrope, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  font-weight: 700;
}

.donation-ribbon-logo {
  display: none;
}

.donation-page-ribbon .donation-ribbon-adorno {
  justify-self: end;
  width: 190px;
  margin-bottom: -18px;
}

.adoption-ribbon {
  grid-template-columns: 1fr auto;
  margin-top: 26px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, .92);
}

.adoption-ribbon h2 {
  margin-bottom: .45rem;
}

.adoption-ribbon p:not(.section-kicker) {
  margin-bottom: 0;
}

.home-adoption-showcase {
  margin-top: 26px;
  padding: 26px 0 12px;
}

.home-adoption-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 14px;
}

.home-adoption-head h2 {
  margin-bottom: .45rem;
}

.home-adoption-head p:not(.section-kicker) {
  max-width: 650px;
  margin-bottom: 0;
}

.home-pet-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 0 .65rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}

.home-pet-rail::-webkit-scrollbar {
  display: none;
}

.home-pet-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.pet-browse-card {
  display: block;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid rgba(116, 39, 220, .13);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  user-select: none;
}

.pet-browse-card:hover {
  transform: translateY(-1px);
}

a.pet-browse-card {
  cursor: pointer;
}

.pet-browse-card img {
  pointer-events: none;
}

.pet-browse-image {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #ebe3ff, #eaf0ff);
  color: var(--purple);
  font-size: 3rem;
}

.pet-browse-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-browse-info {
  display: grid;
  gap: .25rem;
  padding: .85rem .95rem 1rem;
  font-size: .88rem;
}

.pet-browse-info > strong {
  color: var(--blue);
  font-size: 1.05rem;
}

.pet-browse-info .pet-kind {
  margin: 0;
}

.pet-browse-info span {
  color: var(--muted);
  line-height: 1.35;
}

.pet-browse-info span strong {
  color: var(--ink);
}

.adoptions-page .pet-grid {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.adoption-list-card .pet-browse-info {
  gap: .35rem;
}

.adoption-list-card .pet-kind {
  color: #d93cbf;
  margin-bottom: 0;
}

.pet-age-lines {
  display: grid;
  gap: .2rem;
  margin: .15rem 0 .25rem;
}

.adoption-list-card .tag-row {
  display: grid;
  justify-items: start;
  min-height: 0;
  margin: .7rem 0 0;
}

.adoption-list-card .tag-row span {
  max-width: 100%;
  border-radius: 10px;
  line-height: 1.35;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pagination-pages {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination-link,
.pagination-page {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid rgba(116, 39, 220, .16);
  border-radius: 12px;
  color: var(--purple);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 22px rgba(83, 57, 137, .08);
  font-weight: 900;
}

.pagination-link {
  padding: 0 1rem;
}

.pagination-page {
  width: 42px;
}

.pagination-link:hover,
.pagination-page:hover,
.pagination-page.active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.pagination-link.disabled {
  pointer-events: none;
  opacity: .45;
}

.help-section {
  padding-block: 46px 58px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 24px;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.section-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: .85rem;
  flex-wrap: wrap;
}

.adoption-controls {
  align-items: flex-end;
  flex-direction: column;
}

.adoption-sort-form {
  display: flex;
  align-items: end;
  gap: .65rem;
}

.adoption-sort-form label {
  min-width: 178px;
  gap: .32rem;
  font-size: .78rem;
}

.adoption-sort-form select {
  min-height: 44px;
  border-color: rgba(116, 39, 220, .18);
  border-radius: 12px;
  color: var(--purple);
  font-size: .9rem;
  font-weight: 900;
  background: rgba(255, 255, 255, .94);
}

.adoption-sort-form .button {
  min-height: 44px;
  padding: .75rem 1rem;
}

.help-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.donation-impact-section {
  padding-top: 0;
  padding-bottom: 42px;
}

.donation-methods-section {
  padding-top: 48px;
  padding-bottom: 42px;
}

.donation-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.donation-impact-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon amount" "icon label";
  align-items: center;
  gap: .2rem .85rem;
  min-height: 116px;
  padding: 18px;
}

.donation-impact-grid article > span {
  grid-area: icon;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid #ffe2f6;
  border-radius: 50%;
  color: var(--purple);
  background: #ffeaf8;
  box-shadow: inset 0 0 0 2px rgba(255, 111, 201, .2);
  font-size: 1.45rem;
}

.donation-impact-grid strong {
  grid-area: amount;
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.donation-impact-grid p {
  grid-area: label;
  margin: 0;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.35;
}

.donation-method-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
}

.donation-method-card {
  display: grid;
  align-content: start;
  height: 100%;
  min-height: 320px;
}

.donation-method-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 1.1rem;
}

.donation-method-button {
  width: 100%;
  min-height: 44px;
  padding-inline: .85rem;
  text-align: center;
}

.donation-method-button-light {
  color: var(--purple);
  background: #fff;
  border: 1px solid rgba(116, 39, 220, .18);
  box-shadow: 0 12px 24px rgba(116, 39, 220, .12);
}

.donation-method-button.is-disabled {
  cursor: default;
  opacity: .52;
  box-shadow: none;
  filter: grayscale(.2);
}

.donation-kind-inline {
  display: grid;
  gap: .65rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(116, 39, 220, .12);
}

.donation-kind-inline h4 {
  margin: 0;
  color: var(--purple);
  font-size: 1.05rem;
}

.donation-kind-inline p {
  margin: 0;
}

.donation-kind-inline .donation-method-button {
  width: auto;
  justify-self: start;
}

.donation-detail-list {
  display: grid;
  gap: 1rem;
  margin-top: .9rem;
}

.donation-detail-list > div {
  display: grid;
  gap: .45rem;
  padding: .95rem;
  border: 1px solid rgba(116, 39, 220, .12);
  border-radius: 12px;
  background: rgba(248, 244, 255, .72);
}

.donation-detail-list p {
  display: grid;
  gap: .1rem;
  margin: 0;
  overflow-wrap: anywhere;
}

.donation-detail-list p.is-copyable {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: .65rem;
}

.donation-detail-list p.is-copyable strong {
  grid-column: 1 / -1;
}

.copy-button {
  min-height: 32px;
  padding: .35rem .7rem;
  border: 1px solid rgba(116, 39, 220, .16);
  border-radius: 999px;
  color: var(--purple);
  background: #fff;
  box-shadow: 0 8px 18px rgba(116, 39, 220, .1);
  cursor: pointer;
  font: inherit;
  font-size: .76rem;
  font-weight: 900;
}

.copy-button.is-copied {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.donation-detail-list strong {
  color: var(--purple);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.donation-detail-list span {
  color: var(--ink);
  font-weight: 800;
}

.help-grid article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(116, 39, 220, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.help-grid a {
  display: inline-block;
  margin-top: .85rem;
  color: var(--purple);
  font-weight: 900;
}

.pet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pet-card {
  overflow: hidden;
}

.pet-photo {
  display: grid;
  place-items: center;
  height: 230px;
  background: linear-gradient(135deg, #ebe3ff, #eaf0ff);
}

.pet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pet-photo span {
  font-size: 4rem;
}

.pet-info {
  padding: 18px;
}

.pet-kind {
  margin-bottom: .2rem;
  color: var(--purple);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  min-height: 32px;
  margin: 1rem 0;
}

.tag-row span {
  padding: .32rem .55rem;
  border-radius: 999px;
  color: var(--purple);
  background: #f1eaff;
  font-size: .78rem;
  font-weight: 900;
}

.adoption-empty {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 24px;
}

.adoption-empty > span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--purple);
  background: #f1eaff;
  font-size: 2rem;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 36px;
  align-items: center;
  padding-block: 58px 30px;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.6rem);
}

.adoptions-hero-copy {
  display: grid;
  gap: 1rem;
}

.adoptions-hero-copy p {
  margin-bottom: 0;
}

.adoptions-hero-copy a {
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.adoptions-hero-copy strong,
.adoptions-hero-copy em {
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.adoptions-hero-copy span {
  color: var(--purple);
  font-weight: 900;
}

.page-hero > img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-page .page-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 24px;
}

.adoption-note {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 18px;
}

.adoption-note span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.adoption-note p {
  margin: 0;
}

.adoption-responsible-banner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding: 28px 34px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 98, 215, .28), transparent 25%),
    linear-gradient(135deg, #5b10c8 0%, #782ee9 45%, #2b7cff 100%);
  box-shadow: 0 26px 70px rgba(109, 39, 207, .28);
}

.donation-services-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 24px;
  margin-top: 46px;
  padding: 28px 34px 26px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 98, 215, .28), transparent 25%),
    linear-gradient(135deg, #5b10c8 0%, #782ee9 45%, #2b7cff 100%);
  box-shadow: 0 26px 70px rgba(109, 39, 207, .28);
}

.adoption-responsible-banner h2 {
  margin-bottom: 0;
  color: #fff;
  font-family: Nunito, Manrope, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.35vw, 2.35rem);
  font-weight: 600;
}

.donation-services-banner h2 {
  margin-bottom: .55rem;
  color: #fff;
  font-family: Nunito, Manrope, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
}

.donation-services-links {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .9rem;
  font-weight: 800;
}

.donation-services-links a {
  color: #fff;
  font-weight: 900;
}

.donation-services-links span {
  margin-inline: .35rem;
  color: rgba(255, 255, 255, .55);
}

.section-kicker-light {
  color: #fff;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.responsible-grid span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-weight: 900;
  text-align: center;
}

.donation-services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 24px;
  align-items: stretch;
}

.contact-page .contact-layout {
  padding-top: 18px;
}

.contact-form,
.contact-card,
.support-grid article {
  padding: 24px;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form h2 {
  color: var(--purple);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.05;
}

.contact-flash {
  padding: .85rem 1rem;
  border-radius: 14px;
  color: var(--purple);
  background: #f8f4ff;
  font-weight: 900;
  line-height: 1.35;
}

.contact-flash-success {
  color: #136f5d;
  background: #e9fbf5;
}

.contact-flash-error {
  color: #9c2257;
  background: #fff0f7;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-phone-block {
  display: grid;
  gap: .7rem;
}

.field-title {
  color: var(--ink);
  font-weight: 900;
}

.field-title small {
  color: var(--muted);
  font-size: .82em;
  font-weight: 800;
}

.contact-phone-options {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}

.contact-phone-options label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--muted);
  font-weight: 800;
}

.contact-phone-options input {
  width: auto;
  margin: 0;
}

.contact-recaptcha {
  min-height: 78px;
}

.button-block {
  justify-content: center;
  width: 100%;
}

label {
  display: grid;
  gap: .45rem;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .82rem .9rem;
  color: var(--ink);
  background: #fff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(116, 39, 220, .1);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: .85rem;
}

.contact-card img {
  width: 118px;
}

.contact-card a {
  display: block;
  padding: .85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--purple);
  background: #f8f4ff;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-services-card {
  display: grid;
  align-content: start;
  gap: 18px;
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 98, 215, .28), transparent 28%),
    linear-gradient(135deg, #5b10c8 0%, #782ee9 45%, #2b7cff 100%);
  box-shadow: 0 26px 70px rgba(109, 39, 207, .28);
}

.contact-services-card h2 {
  margin-bottom: .65rem;
  color: #fff;
  font-family: Nunito, Manrope, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
}

.contact-services-card .donation-services-links {
  display: grid;
  justify-items: center;
  gap: .08rem;
  line-height: 1.7;
  text-align: center;
}

.contact-services-card .donation-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-services-adorno {
  justify-self: center;
  width: min(280px, 82%);
  margin-top: 6px;
}

.contact-cookie-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .24);
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  font-weight: 800;
}

.empty-page {
  min-height: 58vh;
  padding-block: 90px;
}

.site-footer {
  padding: 38px 0 26px;
  border-top: 1px solid rgba(116, 39, 220, .1);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  gap: 26px;
  align-items: center;
}

.footer-brand-block {
  justify-self: start;
  margin-left: 24px;
}

.footer-logo {
  width: 230px;
  margin-bottom: .5rem;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-follow {
  display: grid;
  justify-items: center;
  gap: .6rem;
  color: var(--purple);
  font-weight: 900;
}

.footer-claim {
  display: grid;
  gap: .35rem;
  color: var(--purple);
  font-weight: 900;
  text-align: right;
}

.footer-claim small {
  color: var(--blue);
  font-size: .95rem;
  font-weight: 900;
}

.footer-claim .footer-location {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
}

.footer-credit {
  display: grid;
  gap: .2rem;
  margin: 0;
  padding-left: 22px;
  border-left: 1px solid rgba(116, 39, 220, .2);
  color: var(--muted);
  text-align: left;
  font-size: .86rem;
  font-weight: 800;
}

.footer-credit a {
  color: var(--purple);
}

@media (max-width: 1080px) {
  .hero,
  .page-hero,
  .split-section,
  .donation-ribbon,
  .adoption-ribbon,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-page .page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-block: 34px 30px;
    overflow: visible;
  }

  .hero::before {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    max-width: 640px;
  }

  .hero-picture {
    position: relative;
    inset: auto;
    z-index: 1;
    width: min(var(--container), calc(100vw - 40px));
    height: clamp(500px, 60vw, 650px);
    margin: 24px auto 0;
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .donations-hero {
    min-height: 690px;
    padding: 74px max(48px, calc((100vw - var(--container)) / 2)) 42px;
  }

  .donations-hero-picture {
    inset: 18px max(20px, calc((100vw - var(--container)) / 2)) 0;
    border-radius: 24px;
  }

  .donations-hero-content {
    max-width: 560px;
  }

  .impact-strip {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 18px;
  }

  .impact-strip article {
    border-right: 0;
  }

  .method-grid,
  .help-grid,
  .support-grid,
  .donation-impact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .donation-ribbon.donation-page-ribbon {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: center;
    gap: .85rem;
    margin-top: 0;
    min-height: 320px;
    padding: 24px;
    border: 0;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #8a45ff, #7427dc 48%, #5791ff);
    box-shadow: var(--shadow);
    text-align: center;
  }

  .donation-ribbon.donation-page-ribbon h3 {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.18;
  }

  .donation-page-ribbon .donation-ribbon-logo {
    display: block;
    width: calc(100% - 192px);
    margin: 0 0 1.4rem;
  }

  .donation-page-ribbon .donation-ribbon-adorno {
    align-self: end;
    justify-self: center;
    width: 245px;
    margin: auto 0 0;
  }

  .pet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-follow {
    justify-items: center;
  }

  .footer-claim {
    text-align: left;
  }

  .footer-credit {
    border-left: 0;
    padding-left: 0;
  }

  .footer-brand-block {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    min-height: 70px;
  }

  .brand {
    width: 210px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    display: none;
    width: min(340px, calc(100vw - 28px));
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .main-nav {
    display: grid;
  }

  .main-nav a:not(.social-button) {
    width: 100%;
  }

  .main-nav .social-button {
    justify-self: start;
    width: 42px;
    height: 42px;
    margin-left: .9rem;
    margin-bottom: .25rem;
    padding: 0;
  }

  .language-switch {
    justify-self: start;
    justify-content: flex-start;
    width: auto;
    margin: .25rem 0 0 .9rem;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  h1 {
    font-size: 2.3rem;
  }

  .hero,
  .page-hero {
    padding-block: 18px 12px;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: .92rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .button {
    min-height: 44px;
    padding: .65rem 1rem;
  }

  .hero-picture {
    width: calc(100% + 16px);
    height: clamp(340px, 90vw, 440px);
    margin: 18px -8px 0;
    border-radius: 20px;
  }

  .donations-hero {
    min-height: 760px;
    padding: 70px 28px 30px;
  }

  .donations-hero-picture {
    inset: 18px 8px 0;
    border-radius: 20px;
    background-position: left center;
  }

  .donations-hero-lead {
    max-width: 360px;
    font-size: .94rem;
  }

  .donations-hero-title {
    max-width: 320px;
    margin-bottom: 1.05rem;
    font-size: clamp(2.55rem, 11vw, 3.6rem);
  }

  .donations-hero-points {
    gap: .7rem;
  }

  .donations-hero-points article {
    grid-template-columns: 58px 1fr;
    gap: .75rem;
  }

  .donations-hero-points article > span {
    width: 48px;
    height: 48px;
  }

  .donations-hero-points svg {
    width: 25px;
    height: 25px;
  }

  .donations-hero-points strong {
    font-size: 1.08rem;
  }

  .donations-hero-points p,
  .donations-hero-help p {
    font-size: .88rem;
  }

  .donations-hero-actions {
    gap: .55rem;
  }

  .impact-strip,
  .method-grid,
  .help-grid,
  .support-grid,
  .donation-impact-grid,
  .pet-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .donation-method-actions {
    grid-template-columns: 1fr;
  }

  .impact-strip {
    margin-top: 12px;
  }

  .impact-strip article {
    justify-content: flex-start;
    min-height: 68px;
    padding-left: 28px;
  }

  .split-section,
  .help-section,
  .section {
    padding-block: 42px;
  }

  .donation-ribbon,
  .adoption-ribbon,
  .donation-services-banner {
    padding: 22px;
  }

  .donation-ribbon img {
    width: 138px;
    margin-bottom: 0;
  }

  .donation-page-ribbon .donation-ribbon-logo {
    width: calc(100% - 176px);
  }

  .donation-page-ribbon .donation-ribbon-adorno {
    width: 225px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .section-actions,
  .adoption-sort-form {
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
  }

  .adoption-controls {
    align-items: flex-start;
  }

  .adoption-sort-form {
    flex-wrap: wrap;
  }

  .adoption-sort-form label {
    min-width: min(100%, 210px);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .home-adoption-head {
    align-items: start;
    flex-direction: column;
  }

  .home-pet-rail {
    grid-auto-columns: minmax(210px, 76vw);
  }

  .adoption-empty,
  .adoption-note,
  .adoption-responsible-banner,
  .contact-services-card .donation-services-grid,
  .donation-services-banner,
  .responsible-grid {
    grid-template-columns: 1fr;
  }

  .adoption-responsible-banner,
  .contact-services-card,
  .donation-services-banner {
    padding: 24px;
  }

  .page-hero > img {
    height: 240px;
  }

  .footer-grid,
  .footer-brand-block,
  .footer-follow,
  .footer-claim,
  .footer-credit {
    justify-items: center;
    justify-self: center;
    text-align: center;
  }

  .footer-brand-block {
    margin-left: 0;
  }

  .footer-credit {
    padding-left: 0;
    border-left: 0;
  }
}
