/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --blue: #1a4fd6;
  --blue-dark: #0d2f8a;
  --blue-light: #a8c8f5;
  --red: #e03030;
  --red-dark: #c42020;
  --black: #111;
  --white: #fff;
  --gray: #f5f5f5;
  --text-dark: #1a1a1a;
  --text-muted: #555;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Bebas Neue', sans-serif;

  --nav-height: 64px;
  --transition: 0.3s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

.hidden {
  display: none !important;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0.5rem;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.section-heading--light {
  color: var(--white);
}

.section-bar {
  width: 80px;
  height: 5px;
  background: var(--red);
  margin-bottom: 0.5rem;
}

.section-bar--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 3px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #333;
}

/* ============================================
   1. NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--black);
  z-index: 100;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
}

.navbar__toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar__list {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--black);
  padding: 1rem 2rem 2rem;
  gap: 0;
}

.navbar__list.is-open {
  display: flex;
}

.navbar__link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.navbar__link:hover {
  color: var(--blue-light);
}

.navbar__link--donate {
  background: var(--red);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s;
}

.navbar__link--donate:hover {
  background: var(--red-dark);
  color: var(--white);
}

/* ============================================
   2. HERO — wide photo background
   ============================================ */
.hero {
  margin-top: var(--nav-height);
  min-height: 85vh;
  background: url('../images/jovy-hero-wide.png') center 20% / cover no-repeat;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(26, 79, 214, 0.85) 0%,
    rgba(26, 79, 214, 0.6) 35%,
    transparent 55%
  );
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero__text {
  max-width: 600px;
  margin-left: auto;
  text-align: right;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__bar {
  width: 200px;
  height: 6px;
  background: var(--red);
  margin: 1rem 0 1rem auto;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero__tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 1.5rem;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero__cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero__authority {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.3rem 1rem;
  z-index: 3;
  white-space: nowrap;
}

.mobile-break {
  display: none;
}

/* ============================================
   3. ABOUT / MEET JOVY
   ============================================ */
.about {
  padding: 3rem 2rem;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.about__text p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: #333;
}

.about__text p:first-of-type::first-letter {
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  float: left;
  margin-right: 0.5rem;
  line-height: 1;
}

.about__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__mobile-image {
  display: none;
}

.about__image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
  padding-top: 0;
}

.about__image img {
  width: 230%;
  max-width: none;
  object-fit: contain;
  border-radius: 4px;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* ============================================
   PHOTO BREAK — full-bleed parallax divider
   ============================================ */
.photo-break {
  position: relative;
  height: 50vh;
  min-height: 300px;
  background-image: url('../images/jlr-overlook.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

@supports (-webkit-touch-callout: none) {
  .photo-break {
    background-attachment: scroll;
  }
}

.photo-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.7) 0%, rgba(26, 79, 214, 0.6) 100%);
}

.photo-break__text {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 4px;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ============================================
   IMPACT STATS — count-up numbers
   ============================================ */
.stats {
  padding: 3.5rem 0;
  background: var(--black);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}

.stats__headline {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: var(--red);
  line-height: 1;
  letter-spacing: 2px;
}

.stat__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   4. PRIORITIES — dark bg, red-border cards
   ============================================ */
.priorities {
  padding: 5rem 2rem;
  background: var(--black);
  color: var(--white);
}

.priorities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.priority-card {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--red);
  padding: 2rem;
  transition: background 0.2s;
}

.priority-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.priority-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.priority-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   5. JOIN THE MOVEMENT — signup
   ============================================ */
.join {
  padding: 5rem 2rem;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.join__subtitle {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.join__form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join__form input,
.join__form select {
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
  width: 100%;
  box-sizing: border-box;
  background: var(--white);
  color: var(--text-dark);
}

.join__form select:required:invalid {
  color: #757575;
}

.join__form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
}

.join__form input:focus,
.join__form select:focus {
  outline: 3px solid var(--red);
}

.join__volunteer-options {
  text-align: left;
  padding: 0.5rem 0;
}

.join__volunteer-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.join__volunteer-options label {
  display: block;
  padding: 0.4rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.join__volunteer-options input[type="checkbox"] {
  width: auto;
  padding: 0;
  margin-right: 0.5rem;
  accent-color: var(--red);
}

/* ============================================
   6. ENDORSEMENTS
   ============================================ */
.endorsements {
  padding: 5rem 2rem;
  background: var(--gray);
  border-bottom: 4px solid var(--blue);
}

.endorsements__slider {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.endorsement-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  text-align: center;
  padding: 1rem 0;
}

.endorsement-slide.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.endorsement-slide__photo {
  width: 338px;
  height: 338px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--blue);
}

.endorsement-slide__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.5);
  transform-origin: center 35%;
}

.endorsement--alsobrooks .endorsement-slide__photo img {
  transform: scale(3.125);
  transform-origin: center 40%;
}

.endorsement--delaney .endorsement-slide__photo img {
  transform: scale(2.656) translateX(-7px);
  transform-origin: center 45%;
}


.endorsement--trone .endorsement-slide__photo img {
  transform: scale(2.411) translateX(-4px) translateY(-12px);
  transform-origin: center 40%;
}

.endorsements__also {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
  text-align: center;
}

.endorsements__also-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.endorsements__also-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.endorsements__also-item {
  padding: 1rem;
  width: calc(33.333% - 1rem);
  text-align: center;
}

.endorsements__also-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--text-dark);
}

.endorsements__also-title {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .endorsements__also-item {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 480px) {
  .endorsements__also-item {
    width: 100%;
  }
}

.endorsement-slide__photo--placeholder {
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.endorsement-slide__photo--placeholder span {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.endorsement--fanigonzalez .endorsement-slide__photo img {
  transform: scale(2.8) translateX(-2px) translateY(-20px);
  transform-origin: center 40%;
}

.endorsement--raskin .endorsement-slide__photo img {
  transform: scale(3.125) translateX(-2px);
  transform-origin: center 40%;
}

.endorsement--penamelnyk .endorsement-slide__photo img {
  transform: scale(2.344) translateX(-3px) translateY(18px);
  transform-origin: center 40%;
}

.endorsement--elrich .endorsement-slide__photo img {
  transform: scale(2.5) translateX(-5px) translateY(5px);
  transform-origin: center 40%;
}

.endorsement--jawando .endorsement-slide__photo img {
  transform: scale(2.789) translateX(4px) translateY(-19px);
  transform-origin: center 40%;
}

.endorsement-slide__quote {
  font-size: 1.15rem;
  font-style: italic;
  color: #333;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  padding: 0;
  border: none;
}

.endorsement-slide__name {
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 0.3rem;
}

.endorsement-slide__title {
  font-size: 1.8rem;
  color: #666;
}

.endorsements__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.endorsements__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.endorsements__dot.is-active {
  background: var(--blue);
}

.endorsements__arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.endorsements__arrow {
  background: var(--blue);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.endorsements__arrow:hover {
  background: var(--blue-dark);
}

/* ============================================
   7. CONTACT
   ============================================ */
.contact {
  padding: 5rem 2rem;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.contact__info p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.contact__info a {
  color: var(--blue);
  font-weight: 600;
}

.contact__info a:hover {
  text-decoration: underline;
}

.contact__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact__social-link {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.contact__social-link:hover {
  background: var(--blue-dark);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form input,
.contact__form textarea {
  padding: 0.9rem 1rem;
  border: 2px solid #ddd;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border 0.2s;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.contact__form textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================
   8. DONATE BANNER — bold red
   ============================================ */
.donate {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.donate__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.donate__text {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.donate__note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* ============================================
   STICKY MOBILE DONATE BAR
   ============================================ */
.mobile-donate {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--red);
  padding: 0.75rem 2rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.mobile-donate.is-visible {
  transform: translateY(0);
}

.mobile-donate__btn {
  display: block;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.25rem;
}

/* ============================================
   9. FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding-bottom: 4rem;
}

.footer__authority {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE — TABLET+ (768px)
   ============================================ */
@media (min-width: 768px) {
  .navbar__toggle {
    display: none;
  }

  .navbar__list {
    display: flex;
    flex-direction: row;
    position: static;
    padding: 0;
    background: transparent;
    gap: 2rem;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .stats__inner {
    grid-template-columns: repeat(4, 1fr);
  }

  .priorities__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }


  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-donate {
    display: none;
  }

  .about__mobile-image {
    display: none;
  }

  .footer {
    padding-bottom: 2rem;
  }

  .photo-break {
    height: 60vh;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    background-position: center 20%;
  }

  .hero::before {
    background: linear-gradient(
      to top,
      rgba(26, 79, 214, 0.95) 0%,
      rgba(26, 79, 214, 0.75) 35%,
      rgba(26, 79, 214, 0.15) 55%,
      transparent 100%
    );
  }

  .hero__content {
    padding: 2rem 1.5rem 3.5rem;
  }

  .hero__name {
    font-size: 3.6rem;
    text-align: right;
    margin-top: 6rem;
  }

  .hero__bar {
    margin-left: auto;
    margin-right: 0;
    width: 50%;
  }

  .hero__subtitle {
    font-size: 0.7rem;
    text-align: right;
  }

  .hero__tagline {
    font-size: 0.85rem;
    margin-left: 0;
    margin-top: 0.75rem;
    text-align: right;
  }

  .hero__text {
    max-width: 100%;
    text-align: right;
  }

  .hero__cta {
    justify-content: flex-end;
    margin-top: 1rem;
    gap: 0.75rem;
  }

  .hero__cta .btn {
    padding: 0.7rem 0;
    font-size: 0.8rem;
    width: 160px;
    text-align: center;
  }

  .hero__authority {
    display: none;
  }

  .mobile-break {
    display: block;
  }

  .about__mobile-image {
    display: block;
    overflow: hidden;
    margin: 1rem 0;
  }

  .about__mobile-image img {
    width: 206%;
    max-width: none;
    margin-left: -53%;
  }

  .about__image {
    display: none;
  }

  .donate {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .donate .btn {
    margin: 0 auto;
  }

  .footer {
    padding-bottom: 4rem;
    font-size: 0.7rem;
  }
}
