@font-face {
  font-family: "AvantGarde Bold";
  src: url("ITCAvantGardePro-Bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvantGarde Demi";
  src: url("ITCAvantGardePro-Demi.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvantGarde Book";
  src: url("ITCAvantGardePro-Bk.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Regular";
  src: url("HelveticaNowText-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Light";
  src: url("HelveticaNowText-Light.woff") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("HelveticaNowDisplay-Bd.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #f15a22;
  --orange-dark: #d94e1a;
  --navy: #002d4b;
  --navy-card: #1a3c5a;
  --cream: #fff9e5;
  --cream-soft: #fdf8e6;
  --blue: #0084d6;
  --gray: #555;
  --gray-light: #888;
  --text: #222;
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Now Regular", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.logo-text {
  font-family: "AvantGarde Bold", sans-serif;
  color: var(--orange);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav-primary {
  display: flex;
  gap: 18px;
  margin-left: 8px;
}

.nav-primary a {
  font-family: "AvantGarde Demi", sans-serif;
  color: var(--orange);
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-primary a:hover {
  text-decoration: underline;
}

.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-secondary {
  display: flex;
  gap: 14px;
}

.nav-secondary a {
  color: var(--gray-light);
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-secondary a:hover {
  color: var(--gray);
}

.search-box {
  position: relative;
  width: 150px;
}

.search-box input {
  width: 100%;
  border: 1px solid #ccc;
  padding: 8px 34px 8px 10px;
  background: #fff;
  outline: none;
}

.search-box input:focus {
  border-color: var(--orange);
}

.search-box button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px;
  color: #666;
}

.btn-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange);
  background-image: url("ico-crosshatch-orange.png");
  color: #fff !important;
  font-family: "AvantGarde Bold", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.btn-donate:hover {
  background-color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--orange);
  padding: 8px;
}

.hero {
  position: relative;
  min-height: 560px;
  height: calc(100vh - 72px);
  max-height: 720px;
  overflow: hidden;
  background: #111;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center right;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 42%,
    rgba(0, 0, 0, 0.05) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  margin: 0 0 12px;
  color: #fff;
  font-family: "AvantGarde Bold", "Helvetica Now Display", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: normal;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  margin: 0 0 28px;
  color: #fff;
  font-family: "Helvetica Now Light", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 420px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.btn-give {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: var(--orange);
  background-image: url("ico-crosshatch-orange.png");
  color: #fff;
  font-family: "AvantGarde Bold", sans-serif;
  font-size: 1.05rem;
  padding: 14px 36px;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.15s;
}

.btn-give:hover {
  background-color: var(--orange-dark);
  transform: translateY(-1px);
}

.hero-thumbs {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
}

.hero-thumbs button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #333;
  transition: border-color 0.2s, transform 0.2s;
}

.hero-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-thumbs button.active,
.hero-thumbs button:hover {
  border-color: var(--orange);
  transform: scale(1.06);
}

.latest {
  padding: 64px 24px 72px;
  background: #fff;
}

.latest h2,
.stay-connected h2,
.featured h2 {
  text-align: center;
  font-family: "AvantGarde Bold", "Helvetica Now Display", sans-serif;
  font-size: 2rem;
  font-weight: normal;
  margin: 0 0 40px;
  color: #1a1a1a;
}

.latest-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.news-card .date {
  color: var(--gray-light);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.news-card h3 {
  margin: 0 0 12px;
  font-family: "AvantGarde Demi", sans-serif;
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.3;
}

.news-card h3 a {
  color: var(--orange);
}

.news-card h3 a:hover {
  text-decoration: underline;
}

.news-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.55;
}

.stay-connected {
  background: var(--cream);
  padding: 56px 24px 48px;
}

.signup-form {
  max-width: 1100px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.signup-form input {
  border: 1px solid #c8c8c8;
  padding: 14px 12px;
  background: #fff;
  outline: none;
}

.signup-form input:focus {
  border-color: var(--blue);
}

.btn-signup {
  background-color: var(--blue);
  background-image: url("ico-crosshatch-blue.png");
  color: #fff;
  border: 0;
  padding: 14px 28px;
  font-family: "AvantGarde Bold", sans-serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s;
}

.btn-signup:hover {
  filter: brightness(1.08);
}

.signup-note {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 0.72rem;
  color: #555;
  line-height: 1.45;
}

.signup-note a {
  font-weight: bold;
  text-decoration: underline;
}

.social-orange {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.social-orange a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}

.social-orange a:hover {
  transform: scale(1.08);
}

.social-orange img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.signup-msg {
  text-align: center;
  color: #0a7a3e;
  font-size: 0.95rem;
  min-height: 1.2em;
  margin: 0 0 12px;
}

.difference {
  position: relative;
  min-height: 520px;
  background: #222 center/cover no-repeat;
  padding: 56px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.difference::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(20, 20, 20, 0.35) 35%,
    rgba(20, 20, 20, 0.55) 100%
  );
}

.difference h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "AvantGarde Bold", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: normal;
  text-align: center;
  margin: 0 0 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.diff-cards {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.diff-card {
  padding: 32px 22px 28px;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diff-card.orange {
  background: var(--orange);
  color: #fff;
}

.diff-card.cream {
  background: var(--cream-soft);
  color: var(--orange);
}

.diff-card.navy {
  background: var(--navy-card);
  color: #fff;
}

.diff-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.diff-card.cream .icon {
  background: #fff;
}

.diff-card .icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.diff-card h3 {
  margin: 0 0 12px;
  font-family: "AvantGarde Bold", sans-serif;
  font-size: 1.35rem;
  font-weight: normal;
}

.diff-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.diff-card.cream h3,
.diff-card.cream p {
  color: var(--orange);
}

.featured {
  background: var(--cream-soft);
  padding: 56px 24px 48px;
}

.highlights-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.highlight-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 6px solid var(--orange);
  display: block;
  color: #fff;
}

.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.highlight-card:hover img {
  transform: scale(1.05);
}

.highlight-card .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 16px 18px;
  text-align: center;
  font-family: "AvantGarde Demi", sans-serif;
  font-size: 0.95rem;
  line-height: 1.35;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.cruelty-banner {
  position: relative;
  min-height: 280px;
  background: #333 center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 72px;
  text-align: center;
}

.cruelty-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.cruelty-banner h2 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "AvantGarde Bold", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: normal;
  margin: 0 0 28px;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.cruelty-banner .btn-donate {
  position: relative;
  z-index: 1;
  padding: 16px 48px;
  font-size: 1.1rem;
}

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 48px 24px 32px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-logo span {
  font-family: "AvantGarde Bold", sans-serif;
  color: var(--orange);
  font-size: 1.8rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 22px;
}

.footer-nav a {
  color: #fff;
  font-family: "AvantGarde Demi", sans-serif;
  font-size: 0.92rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-legal {
  color: #c5d0d8;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.footer-legal a {
  color: #fff;
  text-decoration: underline;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}

.footer-badges img {
  height: 88px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
}

.social-white {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}

.social-white a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-white img {
  width: 18px;
  height: 18px;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  max-width: 720px;
  margin: 0 auto 24px;
}

.partnerships h3 {
  margin: 0 0 18px;
  color: #a8b4be;
  font-size: 0.85rem;
  font-weight: normal;
  font-family: "Helvetica Now Regular", sans-serif;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.partner-logos img {
  height: 36px;
  width: auto;
  opacity: 0.95;
}

.partner-note {
  color: #8a98a4;
  font-size: 0.72rem;
  margin: 0;
}

@media (max-width: 1100px) {
  .nav-secondary {
    display: none;
  }

  .search-box {
    width: 120px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-primary,
  .header-right .search-box,
  .header-right .nav-secondary {
    display: none;
  }

  .header-right {
    gap: 8px;
  }

  .btn-donate {
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 480px;
    height: 70vh;
  }

  .hero-content {
    padding: 0 24px;
  }

  .latest-grid,
  .diff-cards,
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .signup-form {
    grid-template-columns: 1fr 1fr;
  }

  .btn-signup {
    grid-column: 1 / -1;
  }

  .diff-cards {
    max-width: 360px;
  }
}

@media (max-width: 560px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .hero-thumbs button {
    width: 46px;
    height: 46px;
  }
}
