/* =============================================
       CSS CUSTOM PROPERTIES — BRAND PALETTE
    ============================================= */
:root {
  --sky: #00addc;
  --sky-dk: #007696;
  --cactus: #77c1ae;
  --cactus-dk: #5c998b;
  --adobe: #f58220;
  --adobe-dk: #d4711a;
  --poppy: #fdb813;
  --poppy-dk: #e39f15;
  --palo: #ffd531;
  /* --neutral: #6d656b; */
  --neutral: #eb18b6;
  --white: #ffffff;
  --off-white: #f9f8f7;
  --dark: #1a1a1a;
  --body-text: #333333;

  --font-display: "Bebas Neue", sans-serif;
  --font-ui: "Josefin Sans", sans-serif;

  --max-w: 1200px;
  --section-pad: 80px 24px;
}

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

html {
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

body {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.65;
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
       NAVIGATION
    ============================================= */
#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--sky-dk);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* .nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
} */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  max-height: 44px;
  transition: opacity 0.6s ease;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--poppy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dark);
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-img {
  height: 66px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.nav-links a:hover {
  opacity: 1;
}

.nav-links .btn-donate {
  background: var(--adobe);
  color: var(--white);
  padding: 8px 20px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}
.nav-links .btn-donate:hover {
  background: var(--adobe-dk);
  opacity: 1;
}

/* Language Switcher */
.nav-right-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  position: relative;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s;
}

.lang-btn:hover {
  opacity: 1;
}

.lang-globe {
  width: 20px;
  height: 20px;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  list-style: none;
  min-width: 140px;
  overflow: hidden;
  z-index: 2000;
}

.lang-dropdown.open {
  display: block;
}

.lang-option {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark) !important;
  opacity: 1 !important;
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
}

.lang-option:hover {
  background: var(--sky);
  color: var(--white) !important;
}

.lang-option.active {
  color: var(--sky-dk) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--sky-dk);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-overlay.open {
  display: flex;
}
.nav-overlay a {
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-overlay .btn-donate-overlay {
  background: var(--adobe);
  padding: 14px 40px;
  font-size: 20px;
}

/* =============================================
       HERO
    ============================================= */
#hero {
  position: relative;
  background: var(--sky);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Geometric background pattern */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 600px;
  height: 600px;
  background: var(--sky-dk);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.45;
}
.hero-bg::after {
  content: "";
  position: absolute;
  right: 80px;
  bottom: -40px;
  width: 300px;
  height: 300px;
  background: var(--cactus);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.3;
}
.hero-accent-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    90deg,
    var(--poppy) 0%,
    var(--adobe) 50%,
    var(--cactus) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0px 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  width: 100%;
}

/* .hero-text {
} */

.hero-eyebrow {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--poppy);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: normal;
  color: var(--poppy);
}

.hero-gif-wrap {
  margin-bottom: 28px;
}

.hero-logo-wrap {
  margin-bottom: 28px;
}

.hero-logo-img {
  width: clamp(260px, 38vw, 500px);
  height: auto;
  display: block;
}

.hero-gif-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-gif {
  width: clamp(200px, 28vw, 400px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--white);
  opacity: 0.92;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.hero-sub {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 18px;
  color: var(--white);
  opacity: 0.85;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.15s;
  border: 2px solid transparent;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--poppy);
  color: var(--dark);
  border-color: var(--poppy);
}
.btn-primary:hover {
  background: var(--poppy-dk);
  border-color: var(--poppy-dk);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--sky-dk);
}

.btn-adobe {
  background: var(--adobe);
  color: var(--white);
  border-color: var(--adobe);
}
.btn-adobe:hover {
  background: var(--adobe-dk);
  border-color: var(--adobe-dk);
}

.btn-cactus {
  background: var(--cactus);
  color: var(--white);
  border-color: var(--cactus);
}
.btn-cactus:hover {
  background: var(--cactus-dk);
  border-color: var(--cactus-dk);
}

/* Hero badge */
.hero-badge {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
  min-width: 180px;
  align-self: center;
}

.hero-badge-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neutral);
  margin-bottom: 8px;
}

.hero-badge-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
  color: var(--sky-dk);
}

.hero-badge-accent {
  width: 40px;
  height: 4px;
  background: var(--adobe);
  margin: 12px auto 0;
}

/* =============================================
       SECTION COMMON
    ============================================= */
section {
  padding: var(--section-pad);
}

.section-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--adobe);
  margin-bottom: 12px;
}

.section-label.on-dark {
  color: var(--poppy);
}

.section-heading {
  font-family: var(--font-display);
  /* font-size: clamp(32px, 5vw, 52px); */
  line-height: 1;
  color: var(--dark);
  margin-bottom: 20px;
}

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

.divider-bar {
  width: 60px;
  height: 5px;
  background: var(--sky);
  margin-bottom: 24px;
}

.divider-bar.adobe {
  background: var(--adobe);
}
.divider-bar.poppy {
  background: var(--poppy);
}
.divider-bar.cactus {
  background: var(--cactus);
}
.divider-bar.centered {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
       MESSAGE FROM CHRISTINA
    ============================================= */
#message {
  background: var(--off-white);
  padding: var(--section-pad);
}

.message-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* .message-copy {
} */

.message-body {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: 20px;
}

.message-signature {
  /* font-family: var(--font-ui); */
  font-style: italic;
  /* font-size: 17px; */
  /* color: var(--neutral); */
  margin-top: 24px;
}

.message-signature strong {
  display: block;
  font-style: normal;
  font-weight: 700;
  /* font-size: 17px; */
  /* color: var(--sky-dk); */
  margin-top: 4px;
}

.message-pullquotes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pull-quote {
  border-left: 5px solid var(--sky);
  padding: 20px 24px;
  background: var(--white);
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.15;
  color: var(--sky-dk);
}

.activity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.activity-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
}
.activity-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--cactus);
  margin-top: 5px;
  transform: rotate(45deg);
}

/* =============================================
       ISSUE SECTIONS
    ============================================= */
.issue-section {
  padding: var(--section-pad);
}

.issue-section:nth-child(odd) {
  background: var(--white);
}
.issue-section:nth-child(even) {
  background: var(--off-white);
}

.issue-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.issue-inner.reversed .issue-text {
  order: 2;
}
.issue-inner.reversed .issue-visual {
  order: 1;
}

/* .issue-text {
} */

.issue-body {
  font-weight: 300;
  /* font-size: 17px; */
  font-size: 20px;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: 24px;
}

.issue-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.issue-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
}
.issue-points li::before {
  content: "→";
  color: var(--adobe);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Placeholder visual block */
.issue-visual {
  position: relative;
}

.visual-block {
  aspect-ratio: 4/3;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.visual-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: var(--sky-dk);
  opacity: 1;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.visual-block.cactus-bg {
  background: var(--cactus);
}
.visual-block.adobe-bg {
  background: var(--adobe);
}
.visual-block.poppy-bg {
  background: var(--poppy);
}

.visual-placeholder-text {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  text-align: center;
  padding: 24px;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

/* =============================================
       MEET CHRISTINA
    ============================================= */
#bio {
  background: var(--sky-dk);
  padding: var(--section-pad);
}

.bio-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: start;
}

/* .bio-photo-col {
} */

.bio-photo-frame {
  width: 300px;
  aspect-ratio: 3/4;
  background: var(--sky);
  position: relative;
  flex-shrink: 0;
}

.bio-photo-frame::before {
  content: "";
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 3px solid var(--poppy);
  z-index: -1;
}

.bio-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  opacity: 0.6;
}

/* .bio-text {
} */

.bio-body {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 32px;
}

.bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.cred-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.cred-badge.highlight {
  background: var(--poppy);
  border-color: var(--poppy);
  color: var(--dark);
}

/* =============================================
       GALLERY
    ============================================= */
#gallery {
  background: var(--dark);
  padding: var(--section-pad);
}

.gallery-header {
  max-width: var(--max-w);
  margin: 0 auto 40px;
  text-align: center;
}

.gallery-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  columns: 3;
  column-gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* .gallery-img-block {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
} */

.gallery-img-block {
  width: 100%;
  /* height: 240px; */
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.gallery-item:hover .gallery-img-block {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  padding: 24px 12px 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* Placeholder gallery items */
.gallery-placeholder {
  background: var(--sky-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 12px;
}

/* =============================================
       ENDORSEMENTS
    ============================================= */
#endorsements {
  background: var(--off-white);
  padding: var(--section-pad);
}

.endorsements-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.endorsements-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.endorsement-card {
  background: var(--white);
  padding: 28px 24px;
  border-top: 4px solid var(--sky);
}

.endorsement-org {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  color: var(--sky-dk);
  margin-bottom: 8px;
}

.endorsement-quote {
  font-weight: 300;
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral);
}

.endorsement-coming {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  border: 2px dashed var(--cactus);
  color: var(--neutral);
}

.endorsement-coming p {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cactus-dk);
  margin-bottom: 8px;
}

/* =============================================
       CTA BAND
    ============================================= */
#cta {
  background: var(--sky-dk);
  padding: 72px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.cta-sub {
  font-weight: 300;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-gif-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.cta-gif {
  width: clamp(180px, 30vw, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-ui);
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 32px;
  padding: 16px 20px;
  cursor: pointer;
  opacity: 0.7;
  transition:
    opacity 0.2s,
    background 0.2s;
  border-radius: 4px;
}

.lightbox-arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 16px;
}
.lightbox-next {
  right: 16px;
}

/* =============================================
       FOOTER
    ============================================= */
footer {
  background: #111;
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

/* .footer-brand {
} */

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

.footer-brand-name span {
  color: var(--sky);
}

.footer-tagline {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--sky);
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-icon:hover {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
}

/* .footer-disclosure {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
} */
.footer-disclosure {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 24px;
}

/* =============================================
       RESPONSIVE
    ============================================= */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-badge,
  .hero-gif-col {
    display: none;
  }

  .message-inner,
  .issue-inner,
  .bio-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .issue-inner.reversed .issue-text,
  .issue-inner.reversed .issue-visual {
    order: unset;
  }

  .bio-photo-frame {
    width: 220px;
  }
  .bio-photo-frame::before {
    display: none;
  }

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

  .gallery-grid {
    columns: 2;
  }

  .section-label {
    font-size: 26px;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pad: 56px 20px;
  }

  body {
    font-size: 17px;
  }

  .message-body {
    font-size: 18px;
  }
  .bio-body {
    font-size: 18px;
  }
  .issue-body {
    font-size: 18px;
  }

  .activity-list li,
  .issue-points li {
    font-size: 18px;
  }

  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-right-mobile {
    display: flex;
  }
  #lang-switcher-desktop {
    display: none;
  }

  .gallery-grid {
    columns: 1;
  }

  .footer-top {
    flex-direction: column;
  }

  .section-label {
    font-size: 22px;
    letter-spacing: 0.08em;
  }
}

/* =============================================
       SECTION COLOR BANDS
    ============================================= */
.band-sky {
  background: var(--sky);
}
.band-cactus-strip {
  height: 8px;
  background: linear-gradient(90deg, var(--cactus) 0%, var(--sky) 100%);
}
