@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --bg: #06070b;
  --bg-soft: #11131c;
  --panel: rgba(16, 18, 28, 0.76);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f8f4ef;
  --muted: #c9c0b8;
  --gold: #ffd27a;
  --rose: #ff435d;
  --cyan: #54d7ff;
  --green: #69f0ae;
  --violet: #a985ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --brand-font: "Cinzel", Georgia, serif;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 67, 93, 0.24), transparent 28rem),
    radial-gradient(circle at 85% 16%, rgba(84, 215, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 70% 82%, rgba(105, 240, 174, 0.12), transparent 22rem),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 4px;
  mix-blend-mode: soft-light;
  opacity: 0.22;
  z-index: 20;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(4, 5, 9, 0.86), rgba(4, 5, 9, 0.22));
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: sticky;
  background: rgba(4, 5, 9, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--brand-font);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 1.05rem;
  height: 1.35rem;
  display: inline-block;
  filter: drop-shadow(0 0 16px rgba(255, 67, 93, 0.8));
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 999px;
  background: conic-gradient(from 30deg, var(--rose), var(--gold), var(--cyan), var(--green), var(--rose));
  transform: translate(-50%, -50%);
}

.brand-mark::before {
  width: 0.34rem;
  height: 1.35rem;
}

.brand-mark::after {
  width: 1.05rem;
  height: 0.34rem;
  top: 42%;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.5rem, 2vw, 1.35rem);
  flex-wrap: wrap;
}

.top-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.top-nav a:hover {
  color: var(--gold);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1rem, 6vw, 5rem) clamp(2rem, 7vh, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 4, 8, 0.45) 0%, rgba(3, 4, 8, 0.24) 48%, rgba(3, 4, 8, 0.1) 100%),
    linear-gradient(0deg, rgba(6, 7, 11, 0.98) 0%, rgba(6, 7, 11, 0.78) 24%, rgba(6, 7, 11, 0.18) 58%, transparent 78%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: cinematicFade 24s infinite;
  transform: scale(1.08);
}

.photo-one {
  background-image: url("images/herohome-uganda.JPG");
}

.photo-two {
  background-image: url("images/herohome-pakistan.jpg");
  animation-delay: 8s;
}

.photo-three {
  background-image: url("images/herohome-india-2.jpg");
  animation-delay: 16s;
}

@keyframes cinematicFade {
  0%, 100% {
    opacity: 0;
    transform: scale(1.08);
  }
  10%, 30% {
    opacity: 1;
  }
  42% {
    opacity: 0;
    transform: scale(1.01);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.4vw, 1.35rem);
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding: 0;
  text-align: center;
}

.hero-content .eyebrow {
  position: absolute;
  top: clamp(6.4rem, 14vh, 8.5rem);
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.78);
}

.hero-content h1 {
  max-width: 820px;
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: clamp(2.3rem, 5vw, 5.25rem);
  font-weight: 600;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.72);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.2rem;
  font-family: var(--heading-font);
  font-size: clamp(3rem, 8vw, 7.8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-verse {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.hero-verse span {
  display: block;
  margin-top: 0.45rem;
  color: var(--cyan);
  font-weight: 800;
}

.hero-actions,
.giving-grid {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.nation-tab:hover,
.social-links a:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--rose), #ff8a3d, var(--gold));
  color: #12070a;
  border-color: transparent;
  box-shadow: 0 16px 42px rgba(255, 67, 93, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 6vw, 5rem);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 2rem;
  align-items: end;
  border-block: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 67, 93, 0.13), rgba(84, 215, 255, 0.08), rgba(105, 240, 174, 0.06));
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.stats-row div {
  border-left: 2px solid var(--rose);
  padding-left: 1rem;
}

.stats-row strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
}

.stats-row span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.about-section,
.donate-feature,
.closing-section,
.testimony-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.portrait-panel {
  min-height: 28rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
  text-decoration-color: rgba(255, 210, 122, 0.45);
  text-underline-offset: 0.4rem;
}

.video-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 30%, rgba(255, 67, 93, 0.13), transparent 22rem),
    radial-gradient(circle at 82% 68%, rgba(84, 215, 255, 0.13), transparent 24rem),
    rgba(255, 255, 255, 0.02);
}

.video-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 2.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.video-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.featured-video {
  overflow: hidden;
}

.video-thumb {
  position: relative;
  display: block;
  color: #fff;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-thumb span {
  position: absolute;
  inset: 50% auto auto 50%;
  display: inline-grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose), #ff8a3d, var(--gold));
  color: #16080a;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 52px rgba(255, 67, 93, 0.34);
}

.featured-video div {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.featured-video h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.centered {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.world-stage {
  margin-top: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #05070c;
  box-shadow: var(--shadow);
}

.world-stage {
  touch-action: manipulation;
}

.world-map {
  position: relative;
  aspect-ratio: 2 / 1;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(14, 35, 54, 0.05), rgba(2, 8, 15, 0.16)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Land_shallow_topo_2048.jpg?width=2560");
  background-size: 100% 100%, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: soft-light, normal;
}

.world-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 58%, rgba(2, 8, 16, 0.22) 100%),
    linear-gradient(90deg, rgba(84, 215, 255, 0.08), transparent 20%, transparent 80%, rgba(105, 240, 174, 0.08));
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: block;
  width: 1rem;
  height: 1rem;
  color: #fff;
  text-decoration: none;
  transform: translate(-50%, -50%);
}

.map-pin:hover,
.map-pin:focus-visible,
.map-pin.is-active {
  z-index: 12;
}

.pin-dot {
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #ff1738;
  box-shadow: 0 0 0 0 rgba(255, 23, 56, 0.74), 0 0 20px rgba(255, 23, 56, 1);
  animation: pinPulse 1.65s infinite;
}

@keyframes pinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 23, 56, 0.74), 0 0 20px rgba(255, 23, 56, 1);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255, 23, 56, 0), 0 0 24px rgba(255, 23, 56, 1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 23, 56, 0), 0 0 20px rgba(255, 23, 56, 1);
  }
}

.pin-label {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  max-width: 12rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(214, 245, 255, 0.86));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  color: #10253a;
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-0.3rem, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.pin-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.32rem;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
  border-right: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(230, 248, 255, 0.9);
  transform: translateY(-50%) rotate(45deg);
}

.map-pin.label-right .pin-label {
  right: auto;
  left: 1.4rem;
  transform: translate(0.3rem, -50%);
}

.map-pin.label-right .pin-label::after {
  right: auto;
  left: -0.32rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  border-left: 1px solid rgba(255, 255, 255, 0.52);
}

.map-pin.label-top .pin-label {
  top: auto;
  right: auto;
  bottom: 1.4rem;
  left: 50%;
  transform: translate(-50%, -0.3rem);
}

.map-pin.label-top .pin-label::after {
  top: auto;
  right: auto;
  bottom: -0.32rem;
  left: 50%;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  transform: translateX(-50%) rotate(45deg);
}

.map-pin:hover .pin-label,
.map-pin:focus-visible .pin-label,
.map-pin.is-active .pin-label {
  opacity: 1;
  transform: translate(0, -50%);
}

.map-pin.label-right:hover .pin-label,
.map-pin.label-right:focus-visible .pin-label,
.map-pin.label-right.is-active .pin-label {
  transform: translate(0, -50%);
}

.map-pin.label-top:hover .pin-label,
.map-pin.label-top:focus-visible .pin-label,
.map-pin.label-top.is-active .pin-label {
  transform: translate(-50%, 0);
}

.nation-tabs {
  display: none;
}

.nation-tab {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nation-tab.private {
  border-color: rgba(255, 67, 93, 0.7);
  background: rgba(255, 67, 93, 0.14);
}

.nation-select-wrap {
  position: relative;
  display: block;
  width: min(28rem, 100%);
  margin: 1.25rem auto 0;
}

.nation-select-wrap span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nation-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 3.1rem 0 1.15rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(214, 245, 255, 0.12)),
    radial-gradient(circle at 12% 18%, rgba(255, 67, 93, 0.24), transparent 16rem),
    rgba(9, 12, 22, 0.9);
  color: var(--text);
  color-scheme: dark;
  font: inherit;
  font-weight: 900;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nation-select-wrap select:focus {
  outline: 2px solid rgba(255, 210, 122, 0.58);
  outline-offset: 3px;
}

.nation-select-wrap select option {
  background: #11131c;
  color: #f8f4ef;
}

.nation-select-wrap::after {
  content: "\f078";
  position: absolute;
  right: 1.15rem;
  bottom: 0.92rem;
  color: var(--gold);
  font-family: "Font Awesome 6 Free";
  font-size: 0.9rem;
  font-weight: 900;
  pointer-events: none;
}

.giving-panel,
.newsletter-form,
.testimony-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.giving-panel {
  text-align: center;
}

.giving-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 12rem));
  justify-content: center;
}

.giving-grid .button {
  width: 100%;
}

.payment-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
}

.payment-links a {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.payment-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 210, 122, 0.58);
  color: var(--gold);
}

.payment-links i {
  font-size: 1rem;
}

.fine-print,
.newsletter-form p {
  margin: 1rem 0 0;
  font-size: 0.88rem;
}

.closing-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(169, 133, 255, 0.13), rgba(255, 67, 93, 0.08), rgba(84, 215, 255, 0.1)),
    rgba(255, 255, 255, 0.02);
}

.newsletter-form label {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-weight: 900;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}

.newsletter-form .form-row {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
}

input,
button {
  min-height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font: inherit;
}

input {
  width: 100%;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

button {
  padding: 0 1.25rem;
  background: var(--cyan);
  color: #031018;
  font-weight: 950;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  background: #05060a;
}

.site-footer p {
  max-width: 520px;
  margin: 0.4rem 0 0;
}

.footer-brand {
  font-family: var(--brand-font);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  color: var(--gold);
  border-color: rgba(255, 210, 122, 0.55);
}

.nation-hero {
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1rem, 6vw, 5rem) 4rem;
  background:
    linear-gradient(90deg, rgba(4, 5, 9, 0.92), rgba(4, 5, 9, 0.4)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=85");
  background-size: cover;
  background-position: center;
}

.nation-hero h1 {
  max-width: 1000px;
}

.nation-hero p {
  max-width: 720px;
}

.shop-hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1rem, 6vw, 5rem) 4rem;
  background:
    linear-gradient(90deg, rgba(4, 5, 9, 0.92), rgba(4, 5, 9, 0.42)),
    url("images/background-shoppage.jpg");
  background-size: cover;
  background-position: center;
}

.shop-hero-copy {
  max-width: 820px;
}

.shop-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.shop-section {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.etsy-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1rem, 4vw, 2rem);
  align-items: stretch;
}

.etsy-panel,
.shop-details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.etsy-panel {
  display: grid;
  grid-template-rows: auto 1fr;
}

.etsy-browser-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.etsy-browser-bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--rose);
}

.etsy-browser-bar span:nth-child(2) {
  background: var(--gold);
}

.etsy-browser-bar span:nth-child(3) {
  background: var(--green);
}

.etsy-store-card {
  min-height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 67, 93, 0.3), transparent 18rem),
    radial-gradient(circle at 76% 76%, rgba(84, 215, 255, 0.22), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.etsy-badge {
  width: 16rem;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.etsy-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.shop-url {
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.shop-details {
  display: grid;
  align-content: center;
  padding: clamp(1.5rem, 4vw, 2rem);
}

.shop-details h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.shop-actions-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.artwork-link-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.artwork-link-card {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
}

.artwork-link-card img {
  width: 5.5rem;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.artwork-link-card h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.testimony-section {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.testimony-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimony-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.testimony-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.testimony-card div {
  padding: clamp(1rem, 3vw, 1.35rem);
}

.testimony-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.testimony-card p {
  margin: 0;
}

.playlist-card {
  border-color: rgba(255, 67, 93, 0.4);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 67, 93, 0.22), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.playlist-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  border: 1px solid rgba(255, 67, 93, 0.5);
  border-radius: 999px;
  padding: 0.68rem 0.95rem;
  background: rgba(255, 67, 93, 0.14);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.playlist-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 210, 122, 0.68);
  background: rgba(255, 67, 93, 0.22);
}

.playlist-link i {
  color: #ff435d;
  font-size: 1.15rem;
}

.testimony-video-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimony-video-links span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimony-video-links div {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.testimony-video-links a {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.testimony-video-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 210, 122, 0.58);
  color: var(--gold);
}

.gallery-carousel {
  display: grid;
  gap: 1rem;
}

.carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.carousel-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.carousel-controls {
  display: flex;
  gap: 0.65rem;
}

.carousel-button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  min-height: 0;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(240px, 32vw);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(255, 210, 122, 0.8) rgba(255, 255, 255, 0.08);
  padding-bottom: 0.85rem;
}

.gallery-track img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: start;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer,
  .intro-band,
  .about-section,
  .video-feature-grid,
  .donate-feature,
  .closing-section {
    grid-template-columns: 1fr;
  }

  .testimony-grid,
  .etsy-showcase {
    grid-template-columns: 1fr;
  }

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

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: clamp(2rem, 7vh, 4rem);
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .hero-content .eyebrow {
    margin-bottom: 0;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .world-map {
    min-height: 0;
  }

  .nation-select-wrap {
    width: min(24rem, 100%);
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .hero-content .eyebrow {
    top: clamp(8rem, 19vh, 9rem);
    max-width: calc(100% - 1.25rem);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

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

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

  .gallery-track {
    grid-auto-columns: minmax(230px, 82vw);
  }

  .map-section {
    padding-inline: 0.85rem;
  }

  .world-stage {
    margin-top: 1.5rem;
    overflow: visible;
  }

  .world-map {
    aspect-ratio: 2 / 1;
    width: 100%;
    min-height: 180px;
  }

  .pin-label {
    max-width: min(10rem, 58vw);
    padding: 0.34rem 0.62rem;
    font-size: 0.7rem;
  }

  .button,
  button {
    width: 100%;
  }

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

  .carousel-button {
    width: 2.75rem;
  }
}
/* Etsy page eyebrow text updates only */
.shop-page .shop-hero .eyebrow {
  background: linear-gradient(135deg, var(--rose), #ff8a3d, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.95rem;
}

.shop-page .shop-section .section-heading .eyebrow,
.shop-page .shop-details .eyebrow {
  color: var(--gold);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  letter-spacing: 0.12em;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .shop-page .shop-hero .eyebrow,
  .shop-page .shop-section .section-heading .eyebrow,
  .shop-page .shop-details .eyebrow {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
@media (max-width: 700px) {
  .nation-hero .nation-title-position {
    top: 1rem !important;
    left: 1rem !important;
    right: 1rem !important;
    text-align: left !important;
  }

  .nation-hero .nation-summary-position {
    left: 1rem !important;
    right: 1rem !important;
    bottom: 1.5rem !important;
    max-width: none !important;
  }
}

@media (max-width: 768px) {
  .map-pin {
    width: .5rem;
    height: .5rem;
  }

  .pin-dot {
    width: .5rem;
    height: .5rem;
  }
}
