:root {
  --ink: #19322b;
  --muted: #60726b;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --forest: #275d4d;
  --forest-dark: #173f35;
  --gold: #d99b42;
  --coral: #c9674e;
  --line: rgba(25, 50, 43, 0.14);
  --shadow: 0 22px 60px rgba(23, 63, 53, 0.13);
  --radius: 24px;
  font-family: "Segoe UI", Aptos, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

.test-site-banner {
  position: relative;
  z-index: 1001;
  padding: .42rem 1rem;
  background: #d99b42;
  color: #173f35;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-align: center;
  text-transform: uppercase;
}

/* First-visit mission trip invitation */
.invitation-intro {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
  background: var(--forest-dark);
  color: white;
  pointer-events: none;
}
.invitation-intro[hidden] { display: none; }
.invitation-intro-brand-transition {
  --intro-logo-start-x: calc(50vw - 72px);
  --intro-logo-start-y: 54px;
  --intro-logo-end-x: 16px;
  --intro-logo-end-y: 22px;
  --intro-logo-end-scale: .46;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: min(440px, 86vw);
  aspect-ratio: 1308 / 733;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--intro-logo-start-x), var(--intro-logo-start-y), 0);
  transform-origin: top left;
  will-change: transform, opacity;
}
.invitation-intro-brand-transition > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.invitation-intro::before,
.invitation-intro::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
}
.invitation-intro::before {
  background: url("/assets/athens.jpg") center 42% / cover no-repeat;
  filter: saturate(.78) contrast(1.02);
  transform: scale(1.06);
}
.internship-invitation-intro::before {
  background-image: url("/assets/kenya.jpg");
  background-position: center 44%;
}
.internship-invitation-intro .invitation-intro-content { width: min(1080px, calc(100% - 40px)); }
.internship-invitation-intro .invitation-intro-title { font-size: clamp(2.7rem, 7vw, 6.25rem); }
.invitation-intro::after {
  background:
    radial-gradient(circle at 72% 20%, rgba(243,199,128,.32), transparent 32%),
    linear-gradient(120deg, rgba(7,31,25,.96), rgba(11,39,32,.76) 48%, rgba(11,39,32,.36)),
    linear-gradient(0deg, rgba(11,39,32,.52), transparent 58%);
}
.invitation-intro-content {
  position: relative;
  z-index: 3;
  width: min(840px, calc(100% - 40px));
  padding: 36px 24px;
  text-align: center;
  text-shadow: 0 3px 28px rgba(0,0,0,.38);
}
.invitation-intro-overline,
.invitation-intro-tagline,
.invitation-intro-title { margin: 0; }
.invitation-intro-overline {
  color: #f3c780;
  font-size: clamp(.72rem, 1.4vw, .9rem);
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.invitation-intro-title {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  line-height: .96;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.invitation-intro-rule {
  display: block;
  width: min(210px, 42vw);
  height: 2px;
  margin: 28px auto 20px;
  background: linear-gradient(90deg, transparent, #f3c780 22% 78%, transparent);
  transform-origin: center;
}
.invitation-intro-tagline {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: .045em;
}
.motion-enabled .invitation-intro.is-playing {
  animation: invitation-intro-curtain 5s linear both;
}
.motion-enabled .invitation-intro.is-playing .invitation-intro-brand-transition {
  animation: invitation-intro-brand-flight 5s cubic-bezier(.22,.8,.3,1) both;
}
.motion-enabled .invitation-intro.is-playing .invitation-intro-content {
  animation: invitation-intro-content-stage 5s linear both;
}
.motion-enabled .invitation-intro.is-playing::before {
  animation: invitation-intro-image 5s cubic-bezier(.22,.8,.3,1) both;
}
.motion-enabled .invitation-intro.is-playing .invitation-intro-overline,
.motion-enabled .invitation-intro.is-playing .invitation-intro-title,
.motion-enabled .invitation-intro.is-playing .invitation-intro-rule,
.motion-enabled .invitation-intro.is-playing .invitation-intro-tagline {
  opacity: 0;
  animation: invitation-intro-copy .8s cubic-bezier(.22,.8,.3,1) forwards;
}
.motion-enabled .invitation-intro.is-playing .invitation-intro-title { animation-delay: .16s; }
.motion-enabled .invitation-intro.is-playing .invitation-intro-rule { animation-delay: .34s; }
.motion-enabled .invitation-intro.is-playing .invitation-intro-tagline { animation-delay: .46s; }
.motion-enabled .invitation-intro.is-playing.is-dismissing {
  opacity: 0;
  animation: none;
  transition: opacity .24s ease;
}
.motion-enabled.intro-brand-transition-playing .site-header .brand-logo { opacity: 0; }
.invitation-playing .hero-animate .hero-media,
.invitation-playing .page-hero.hero-animate > img,
.invitation-playing .hero-animate .hero-content > * { animation-play-state: paused; }

@keyframes invitation-intro-curtain {
  0% { opacity: 0; }
  8%, 92% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes invitation-intro-brand-flight {
  0% {
    opacity: 0;
    transform: translate3d(var(--intro-logo-start-x), var(--intro-logo-start-y), 0) scale(1);
  }
  8%, 24% {
    opacity: 1;
    transform: translate3d(var(--intro-logo-start-x), var(--intro-logo-start-y), 0) scale(1);
  }
  90%, 96% {
    opacity: 1;
    transform: translate3d(var(--intro-logo-end-x), var(--intro-logo-end-y), 0) scale(var(--intro-logo-end-scale));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--intro-logo-end-x), var(--intro-logo-end-y), 0) scale(var(--intro-logo-end-scale));
  }
}
@keyframes invitation-intro-content-stage {
  0%, 58% { opacity: 1; transform: translateY(0); }
  72%, 100% { opacity: 0; transform: translateY(10px); }
}
@keyframes invitation-intro-image {
  from { transform: scale(1.08); filter: saturate(.68) contrast(.94) blur(3px); }
  to { transform: scale(1.015); filter: saturate(.9) contrast(1.04) blur(0); }
}
@keyframes invitation-intro-copy {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Past trip archive */
.past-trip-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:24px; }
.past-trip-card { overflow:hidden; border:1px solid var(--line); border-radius:var(--radius); background:white; box-shadow:var(--shadow); }
.past-trip-card img { width:100%; aspect-ratio:16/9; object-fit:cover; }
.past-trip-card-content { padding:clamp(22px,4vw,34px); }
.past-trip-card-content h2 { margin:.25rem 0 .7rem; }
.past-trip-card-content p { color:var(--muted); }
.past-trip-card .trip-status { color:var(--coral); font-size:.76rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.trip-detail-grid { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(260px,.75fr); gap:clamp(30px,6vw,70px); align-items:start; }
.trip-facts { padding:28px; border-left:4px solid var(--gold); border-radius:0 var(--radius) var(--radius) 0; background:var(--cream); }
.trip-facts h2 { margin-top:0; font-size:1.5rem; }
.trip-facts dl { margin:0; }
.trip-facts dt { margin-top:1rem; color:var(--forest); font-weight:900; }
.trip-facts dd { margin:.15rem 0 0; color:var(--muted); }
.trip-page-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; align-items:center; }
.gallery-toolbar { display:flex; flex-wrap:wrap; gap:10px; margin:24px 0; }
.gallery-filter { min-height:44px; padding:9px 16px; border:1px solid var(--forest); border-radius:999px; background:transparent; color:var(--forest); font:inherit; font-weight:800; cursor:pointer; }
.gallery-filter[aria-pressed="true"] { background:var(--forest); color:white; }
.archive-gallery { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.archive-photo { margin:0; overflow:hidden; border:1px solid var(--line); border-radius:18px; background:white; box-shadow:0 10px 28px rgba(23,63,53,.1); }
.archive-photo a { display:block; overflow:hidden; background:#e8ece8; }
.archive-photo img { width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .25s ease; }
.archive-photo a:hover img,.archive-photo a:focus-visible img { transform:scale(1.025); }
.archive-photo figcaption { padding:14px 16px 16px; color:var(--muted); font-size:.88rem; line-height:1.45; }
.archive-photo figcaption strong { display:block; margin-bottom:3px; color:var(--forest); }
.gallery-status { color:var(--muted); }
.photo-viewer-instructions {
  width:min(1180px,calc(100% - 32px));
  margin:12px auto;
  padding:13px 18px;
  border:1px solid rgba(217,155,66,.42);
  border-radius:14px;
  background:#fff8e9;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.5;
}
.photo-viewer-instructions strong { color:var(--forest-dark); }
.photo-viewer-trigger { cursor:zoom-in; }
.photo-viewer-trigger:focus-visible {
  outline:3px solid var(--gold);
  outline-offset:3px;
}
.page-hero .photo-viewer-trigger:focus-visible { outline-offset:-5px; }
.archive-photo > img:hover,
.archive-photo > img:focus-visible { transform:scale(1.025); }
.page-hero::after { pointer-events:none; }
body.photo-lightbox-open { overflow:hidden; }
.photo-lightbox {
  position:fixed;
  z-index:1000;
  inset:0;
  display:grid;
  grid-template-rows:minmax(0,1fr) auto auto auto;
  gap:10px;
  padding:72px clamp(16px,4vw,56px) 24px;
  height:100vh;
  height:100dvh;
  overflow:hidden;
  background:rgba(7,24,20,.97);
  color:white;
}
.photo-lightbox[hidden] { display:none; }
.photo-lightbox-close {
  position:absolute;
  top:max(14px,env(safe-area-inset-top));
  right:max(14px,env(safe-area-inset-right));
  display:grid;
  width:48px;
  height:48px;
  padding:0;
  place-items:center;
  border:1px solid rgba(255,255,255,.6);
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:white;
  cursor:pointer;
  font:700 2rem/1 Arial,sans-serif;
}
.photo-lightbox-media {
  display:grid;
  width:100%;
  height:100%;
  min-height:0;
  max-height:calc(100vh - 250px);
  max-height:calc(100dvh - 250px);
  place-items:center;
}
.photo-lightbox-image {
  width:auto;
  height:auto;
  max-width:100%;
  max-height:calc(100vh - 250px);
  max-height:calc(100dvh - 250px);
  object-fit:contain;
  box-shadow:0 18px 58px rgba(0,0,0,.42);
}
.photo-lightbox-caption,
.photo-lightbox-position { margin:0 auto; text-align:center; }
.photo-lightbox-caption {
  max-width:850px;
  max-height:4.5em;
  overflow:auto;
  color:rgba(255,255,255,.9);
}
.photo-lightbox-position { color:rgba(255,255,255,.7); font-size:.86rem; }
.photo-lightbox-controls { display:flex; justify-content:center; gap:12px; }
.photo-lightbox-button {
  min-width:150px;
  min-height:46px;
  padding:10px 18px;
  border:1px solid rgba(255,255,255,.58);
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:white;
  cursor:pointer;
  font:inherit;
  font-weight:800;
}
.photo-lightbox-button:hover,
.photo-lightbox-button:focus-visible,
.photo-lightbox-close:hover,
.photo-lightbox-close:focus-visible { background:white; color:var(--forest-dark); }
.photo-lightbox-button:disabled { opacity:.38; cursor:not-allowed; }
.page-hero.map-hero { height:33vh; min-height:0; max-height:none; background:#4b3924; }
.page-hero.map-hero img { object-fit:cover; object-position:center; }
.map-hero::after { background:linear-gradient(90deg,rgba(11,39,32,.9),rgba(11,39,32,.12) 62%,transparent),linear-gradient(0deg,rgba(11,39,32,.55),transparent 60%); }
.map-hero .hero-content { align-self:center; }
.map-hero .hero-content > p:last-child { max-width:650px; }
@media (max-width:760px) { .past-trip-grid,.trip-detail-grid { grid-template-columns:1fr; } .archive-gallery { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width:480px) { .archive-gallery { grid-template-columns:1fr; } .gallery-filter { width:100%; } }
@media (max-width:560px) {
  .photo-viewer-instructions { width:calc(100% - 16px); }
  .photo-lightbox { padding:68px 12px max(16px,env(safe-area-inset-bottom)); }
  .photo-lightbox-media,
  .photo-lightbox-image {
    max-height:calc(100vh - 270px);
    max-height:calc(100dvh - 270px);
  }
  .photo-lightbox-controls { width:100%; }
  .photo-lightbox-button { flex:1; min-width:0; padding-inline:10px; }
}

body > main,
body > .site-header,
body > .cta-band,
body > .site-footer {
  width: min(calc(100% - 32px), 1240px);
  margin-inline: auto;
}

body > main {
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(23, 63, 53, .10);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  margin-top: 22px;
  border: 1px solid rgba(25,50,43,.12);
  border-bottom-color: rgba(25,50,43,.2);
  border-radius: 24px 24px 0 0;
  background: rgba(246,241,231,.96);
  color: var(--forest-dark);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--forest-dark);
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(250px, 27vw, 340px);
  height: 112px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--forest-dark);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--coral); }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--forest-dark);
  font: inherit;
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest-dark) !important;
  font-size: 1rem;
  font-weight: 900 !important;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.button.secondary {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  color: white !important;
}
.button.light { background: white; color: var(--forest-dark) !important; }

.floating-donate {
  position: fixed;
  z-index: 45;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 14px 32px rgba(11,39,32,.34);
  color: var(--forest-dark);
  font-size: .95rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button.secondary.on-light {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest) !important;
}
.button.compact {
  min-height: 40px;
  padding: 0 16px;
  font-size: .88rem;
}
.floating-donate:hover, .floating-donate:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,39,32,.42);
}

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 32px), 1180px);
  height: 33vh;
  min-height: 340px;
  max-height: 420px;
  margin: 12px auto;
  overflow: hidden;
  border-radius: 22px;
  place-items: end start;
  background: var(--forest-dark);
  color: white;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 86% 14%, rgba(243,199,128,.3), transparent 32%),
              linear-gradient(90deg, rgba(11,39,32,.78) 0%, rgba(11,39,32,.42) 46%, rgba(11,39,32,.08) 80%),
              linear-gradient(0deg, rgba(11,39,32,.38), transparent 58%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.16) contrast(1.03);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}
h1 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(2.7rem, 4.4vw, 3.85rem);
  letter-spacing: -.035em;
}
.hero p {
  max-width: 650px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.intro-replay-button {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 34px;
  padding: 6px 12px;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(243,199,128,.6);
  border-radius: 999px;
  background: rgba(11,39,32,.68);
  color: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(7,31,25,.22);
  cursor: pointer;
  font: inherit;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .025em;
  backdrop-filter: blur(9px);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.intro-replay-button:hover,
.intro-replay-button:focus-visible {
  border-color: #f3c780;
  background: rgba(11,39,32,.9);
  transform: translateY(-1px);
}
.intro-replay-button:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.intro-replay-button:disabled { opacity: .45; cursor: default; transform: none; }

/* Homepage hero visual trial — isolated for easy removal. */
.hero-title-accent { color: #f3c780; }
.hero-journey-line {
  position: absolute;
  z-index: 1;
  right: 3%;
  bottom: 52px;
  width: 49%;
  overflow: visible;
  fill: rgba(243,199,128,.92);
  pointer-events: none;
}
.hero-journey-line path {
  fill: none;
  stroke: rgba(243,199,128,.72);
  stroke-dasharray: 8 10;
  stroke-linecap: round;
  stroke-width: 2;
}
.hero-proof {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 18px;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-proof li {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  background: rgba(11,39,32,.58);
  color: white;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .025em;
  backdrop-filter: blur(7px);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 96px 0;
}
.section.compact { padding-block: 68px; }
main > .section {
  margin-block: 12px;
  padding: 54px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(20, 55, 47, .07);
}
main > .section.compact { padding-block: 48px; }
main > .section.opening-section {
  position: relative;
  overflow: hidden;
  border-color: rgba(217,155,66,.24);
  background:
    radial-gradient(circle at 92% 8%, rgba(217,155,66,.13), transparent 30%),
    linear-gradient(135deg, #f3f7f3 0%, #f6f1e7 100%);
  box-shadow: 0 12px 30px rgba(20,55,47,.09);
}
main > .section.opening-section::after {
  position: absolute;
  right: -72px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(39,93,77,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(39,93,77,.025), 0 0 0 62px rgba(39,93,77,.018);
  content: "";
  pointer-events: none;
}
main > .section.opening-section > * { position: relative; z-index: 1; }
.section-head {
  display: flex;
  margin-bottom: 40px;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.section-head > div { max-width: 720px; }
.section h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 2.7vw, 2.15rem);
  letter-spacing: -.035em;
}
.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.mission-band {
  width: min(calc(100% - 32px), 1180px);
  margin: 12px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(20, 55, 47, .07);
}
.mission-band .section { padding: 54px 30px; }
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.68);
}
.value-number {
  display: block;
  margin-bottom: 40px;
  color: var(--coral);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.value-card h3 { margin-bottom: 10px; font-size: 1.45rem; }
.value-card p { margin: 0; color: var(--muted); }

/* Homepage approach and journeys visual trial — isolated for easy removal. */
.approach-band {
  position: relative;
  border-color: rgba(243,199,128,.28);
  background:
    radial-gradient(circle at 92% 5%, rgba(243,199,128,.2), transparent 30%),
    linear-gradient(135deg, #17483c 0%, #0b2b24 72%);
  box-shadow: 0 18px 42px rgba(11,39,32,.2);
  color: white;
}
.approach-band::before {
  position: absolute;
  top: -88px;
  right: -64px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(243,199,128,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(243,199,128,.035), 0 0 0 58px rgba(243,199,128,.025);
  content: "";
  pointer-events: none;
}
.approach-band .section { position: relative; z-index: 1; }
.approach-band .section-head h2 { color: white; }
.approach-band .section-lead { color: rgba(255,255,255,.76); }
.approach-band .value-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: inherit;
  font: inherit;
  text-align: left;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,253,248,.97);
  box-shadow: 0 16px 32px rgba(4,21,17,.2);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.approach-band .value-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--gold);
  content: "";
}
.approach-band .value-card:nth-child(2)::before { background: var(--coral); }
.approach-band .value-card:nth-child(3)::before { background: #73a997; }
.approach-band .value-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(247, 228, 189, .78), rgba(247, 228, 189, .78)),
    url("/assets/hope-sojourns-icon.png") center / 28px no-repeat,
    #f7e4bd;
  color: var(--forest-dark);
  place-items: center;
}
.approach-band .value-card:nth-child(2) .value-number {
  background:
    linear-gradient(rgba(244, 209, 195, .78), rgba(244, 209, 195, .78)),
    url("/assets/hope-sojourns-icon.png") center / 28px no-repeat,
    #f4d1c3;
}
.approach-band .value-card:nth-child(3) .value-number {
  background:
    linear-gradient(rgba(216, 235, 228, .78), rgba(216, 235, 228, .78)),
    url("/assets/hope-sojourns-icon.png") center / 28px no-repeat,
    #d8ebe4;
}
.approach-band .value-card h3 { color: var(--forest-dark); }
.approach-band .value-card p { color: #50665f; }
.approach-tab:hover,
.approach-tab:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(243,199,128,.72);
  box-shadow: 0 20px 38px rgba(4,21,17,.28);
}
.approach-tab:focus-visible { outline: 3px solid #f3c780; outline-offset: 4px; }
.approach-tab[aria-expanded="true"] {
  transform: translateY(-5px);
  border-color: #f3c780;
  box-shadow: 0 20px 42px rgba(4,21,17,.32), 0 0 0 3px rgba(243,199,128,.18);
}
.approach-card-action {
  display: inline-flex;
  gap: 7px;
  margin-top: 22px;
  color: var(--coral);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .025em;
}
.approach-tab[aria-expanded="true"] .approach-card-action { color: var(--forest-dark); }
.approach-detail-shell {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: grid-template-rows .48s cubic-bezier(.22,.8,.3,1), margin-top .48s cubic-bezier(.22,.8,.3,1), opacity .3s ease, visibility 0s linear .48s;
}
.approach-detail-shell.is-expanded {
  grid-template-rows: 1fr;
  margin-top: 24px;
  opacity: 1;
  visibility: visible;
  transition: grid-template-rows .48s cubic-bezier(.22,.8,.3,1), margin-top .48s cubic-bezier(.22,.8,.3,1), opacity .32s ease .08s, visibility 0s;
}
.approach-detail-inner { min-height: 0; overflow: hidden; }
.approach-collapse {
  display: flex;
  width: fit-content;
  margin: 0 4px 10px auto;
  padding: 7px 11px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(243,199,128,.5);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: white;
  font: inherit;
  font-size: .74rem;
  font-weight: 850;
  cursor: pointer;
}
.approach-collapse:hover,
.approach-collapse:focus-visible { background: rgba(243,199,128,.2); }
.approach-collapse:focus-visible { outline: 3px solid #f3c780; outline-offset: 3px; }
.approach-panel {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(300px,1.1fr);
  gap: clamp(26px,5vw,64px);
  padding: clamp(26px,4vw,42px);
  border: 1px solid rgba(243,199,128,.4);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,253,248,.98), rgba(247,228,189,.95));
  color: var(--ink);
  box-shadow: inset 0 1px rgba(255,255,255,.8), 0 16px 34px rgba(4,21,17,.2);
}
.approach-panel[hidden] { display: none; }
.approach-panel h3 { margin: 4px 0 10px; color: var(--forest-dark); font-size: clamp(1.7rem,2.6vw,2.25rem); }
.approach-panel p:not(.approach-panel-kicker) { margin: 0 0 20px; color: #50665f; }
.approach-panel-kicker {
  margin: 0;
  color: var(--coral);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.approach-panel .button { width: fit-content; }
.approach-checklist,
.approach-skill-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-content: center;
  list-style: none;
}
.approach-checklist li,
.approach-skill-list li {
  position: relative;
  padding: 12px 16px 12px 44px;
  border: 1px solid rgba(23,63,53,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  color: var(--forest-dark);
  font-weight: 750;
}
.approach-checklist li::before,
.approach-skill-list li::before {
  position: absolute;
  top: 11px;
  left: 14px;
  display: grid;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-dark);
  content: "✓";
  font-size: .72rem;
  font-weight: 900;
  place-items: center;
}
.approach-skill-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
.approach-skill-list li:last-child { grid-column: 1 / -1; }

main > .section.journeys-section {
  position: relative;
  border-color: rgba(217,155,66,.32);
  background:
    radial-gradient(circle at 92% 0%, rgba(230,126,92,.12), transparent 26%),
    linear-gradient(145deg, #fffdf8, #fff7e8);
}
.journeys-section .section-head h2 { color: var(--forest-dark); }
.journeys-section .section-lead {
  max-width: 570px;
  padding: 15px 18px;
  border-left: 4px solid var(--coral);
  border-radius: 0 14px 14px 0;
  background: rgba(255,255,255,.62);
}
.journeys-section .journey-path {
  display: grid;
  height: auto;
  min-height: 78px;
  margin: -12px 0 28px;
  padding: 10px 22px;
  align-items: center;
  grid-template-columns: minmax(215px,.34fr) minmax(0,1fr);
  gap: clamp(14px,3vw,34px);
  border: 1px solid rgba(243,199,128,.46);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 0%, rgba(243,199,128,.19), transparent 34%),
    linear-gradient(110deg, #173f35, #275d4d 64%, #204b40);
  color: #f3c780;
  box-shadow: inset 0 1px rgba(255,255,255,.12), 0 12px 28px rgba(23,63,53,.14);
}
.journey-invitation-copy { padding: 3px 0 3px 4px; }
.journey-invitation-copy p { margin: 0; }
.journey-invitation-title {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem,2vw,1.7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.025em;
}
.journey-invitation-tagline {
  margin-top: 6px !important;
  color: #f3c780;
  font-size: clamp(.66rem,1vw,.78rem);
  font-weight: 850;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}
.journeys-section .journey-path svg {
  width: 100%;
  height: 52px;
}
.journeys-section .journey-path > svg > path {
  stroke: #f3c780;
  stroke-width: 2.5;
  stroke-dasharray: none;
}
.journeys-section .journey-path-pin > path { stroke: #173f35; }
.motion-enabled .journey-invitation .journey-invitation-copy {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 1.15s ease .1s, transform .55s cubic-bezier(.22,.8,.3,1) .1s;
}
.motion-enabled .journey-invitation.is-visible .journey-invitation-copy {
  opacity: 1;
  transform: translateY(0);
}
.motion-enabled .journey-invitation.reveal-item {
  transition: opacity 1.35s cubic-bezier(.22,.8,.3,1), transform .7s cubic-bezier(.22,.8,.3,1);
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.trip-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest);
  color: white;
  box-shadow: var(--shadow);
}
.trip-card:nth-child(1), .trip-card:nth-child(4) { grid-column: span 7; }
.trip-card:nth-child(2), .trip-card:nth-child(3) { grid-column: span 5; }
.trip-card:nth-child(n+5) { grid-column: span 6; }
.trip-card-future:last-child:nth-child(odd) {
  grid-column: span 12;
  min-height: 270px;
}
.trip-card-future {
  background:
    radial-gradient(circle at 78% 30%, rgba(217,155,66,.44), transparent 28%),
    linear-gradient(135deg, #173f35 0%, #275d4d 58%, #c9674e 140%);
}
.image-credit {
  width: min(calc(100% - 48px), 1180px);
  margin: -1rem auto 1.25rem;
  color: var(--muted);
  font-size: .78rem;
  text-align: right;
}
.trip-card-future::before {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(255,253,248,.9) url('/assets/hope-sojourns-icon.png') center / calc(100% - 14px) no-repeat;
  content: "";
  opacity: .68;
}
.trip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.trip-card .trip-image-nice {
  height: calc(100% + 64px);
  margin-top: -32px;
}
.trip-card {
  transition: transform .35s ease, box-shadow .35s ease;
}
.trip-card:hover,
.trip-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 68px rgba(23, 63, 53, .22);
}
.trip-card:hover img { transform: scale(1.035); }
.trip-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,39,32,.94), rgba(11,39,32,.08) 75%);
  content: "";
}
.trip-card-content {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
}
.trip-card .kicker {
  margin: 0 0 7px;
  color: #f3c780;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.trip-card h3 { margin: 0 0 8px; font-size: clamp(1.8rem, 2.7vw, 2.15rem); }
.trip-card p { max-width: 600px; margin: 0 0 16px; color: rgba(255,255,255,.82); }
.trip-card.has-schedule { min-height: 390px; }
.trip-card.trip-card-multi-schedule { min-height: 440px; }
.trip-schedule {
  display: grid;
  gap: 7px;
  width: 50%;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.trip-schedule li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(8,35,29,.54);
  backdrop-filter: blur(4px);
}
.trip-date { font-size: .82rem; font-weight: 900; }
.trip-status {
  padding: 3px 7px;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}
.trip-status-scheduled { background: #f3c780; color: #173f35; }
.trip-status-confirmed { background: #d7eee5; color: #173f35; }
.trip-status-planning { background: rgba(255,255,255,.17); color: white; }
.trip-detail { width: 100%; color: rgba(255,255,255,.82); font-size: .74rem; }
.text-link { font-weight: 900; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.trip-card .text-link {
  display: inline-block;
  transition: transform .25s ease, color .25s ease;
}
.trip-card:hover .text-link,
.trip-card:focus-within .text-link { transform: translateX(5px); }
.brochure-callout {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: clamp(24px,5vw,56px);
  margin-top: 28px;
  padding: clamp(26px,4vw,38px);
  border-radius: var(--radius);
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(217,155,66,.25), transparent 28%),
    var(--forest-dark);
  color: white;
  box-shadow: var(--shadow);
}
.brochure-callout .eyebrow { color: #f3c780; }
.brochure-callout h3 { max-width: 680px; margin-bottom: 10px; font-size: clamp(1.65rem,2.5vw,2.15rem); }
.brochure-callout p:not(.eyebrow) { max-width: 760px; margin: 0; color: rgba(255,255,255,.82); }
.brochure-callout-actions { display: flex; max-width: 280px; align-items: center; flex-direction: column; gap: 11px; text-align: center; }
.brochure-callout-actions .button { width: 100%; }
.brochure-callout-actions .text-link { color: white; }
.brochure-file-details { color: rgba(255,255,255,.68); font-size: .82rem; font-weight: 800; }

/* Home-page motion system */
@keyframes hero-image-settle {
  from { transform: scale(1.045); filter: saturate(.82) contrast(.92) blur(2px); }
  to { transform: scale(1); filter: saturate(1) contrast(1) blur(0); }
}
@keyframes hero-home-image-settle {
  from { transform: scale(1.045); filter: brightness(.98) saturate(.94) contrast(.95) blur(2px); }
  to { transform: scale(1); filter: brightness(1.12) saturate(1.16) contrast(1.03) blur(0); }
}
@keyframes hero-content-arrive {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.motion-enabled .hero-animate .hero-media {
  animation: hero-home-image-settle 1.4s cubic-bezier(.22,.8,.3,1) both;
}
.motion-enabled .page-hero.hero-animate > img {
  animation: hero-image-settle 1.4s cubic-bezier(.22,.8,.3,1) both;
}
.motion-enabled .hero-animate .hero-content > * {
  opacity: 0;
  animation: hero-content-arrive .72s cubic-bezier(.22,.8,.3,1) both;
}
.motion-enabled .hero-animate .hero-content > :nth-child(1) { animation-delay: .18s; }
.motion-enabled .hero-animate .hero-content > :nth-child(2) { animation-delay: .29s; }
.motion-enabled .hero-animate .hero-content > :nth-child(3) { animation-delay: .40s; }
.motion-enabled .hero-animate .hero-content > :nth-child(4) { animation-delay: .51s; }
.motion-enabled .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,.8,.3,1), transform .7s cubic-bezier(.22,.8,.3,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-enabled .reveal-item.is-visible { opacity: 1; transform: translateY(0); }
.motion-enabled .trip-card.reveal-item.is-visible:hover,
.motion-enabled .trip-card.reveal-item.is-visible:focus-within { transform: translateY(-6px); }
.past-trip-card,
.track,
.giving-option,
.commitment,
.archive-photo,
.ministry-item,
.info-card,
.trip-facts {
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.past-trip-card:hover,
.past-trip-card:focus-within,
.track:hover,
.track:focus-within,
.giving-option:hover,
.giving-option:focus-within,
.commitment:hover,
.commitment:focus-within,
.archive-photo:hover,
.archive-photo:focus-within,
.ministry-item:hover,
.ministry-item:focus-within,
.info-card:hover,
.info-card:focus-within,
.trip-facts:hover,
.trip-facts:focus-within {
  transform: translateY(-4px);
  border-color: rgba(217,155,66,.5);
  box-shadow: 0 20px 44px rgba(23,63,53,.16);
}
.motion-enabled :is(.past-trip-card,.track,.giving-option,.commitment,.archive-photo,.ministry-item,.info-card,.trip-facts).reveal-item.is-visible:hover,
.motion-enabled :is(.past-trip-card,.track,.giving-option,.commitment,.archive-photo,.ministry-item,.info-card,.trip-facts).reveal-item.is-visible:focus-within {
  transform: translateY(-4px);
}
.journey-path {
  height: 58px;
  margin: -20px 0 24px;
  color: var(--gold);
}
.journey-path svg { width: 100%; height: 100%; overflow: visible; }
.journey-path > svg > path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 9 13;
}
.journey-path-start { fill: var(--coral); }
.journey-path-pin > path { fill: var(--coral); stroke: var(--paper); stroke-width: 2; }
.journey-path-pin circle { fill: var(--paper); }
.motion-enabled .journey-path > svg > path {
  stroke-dasharray: 1100;
  stroke-dashoffset: 1100;
  transition: stroke-dashoffset 1.65s cubic-bezier(.22,.8,.3,1) .15s;
}
.motion-enabled .journey-path-start,
.motion-enabled .journey-path-pin { opacity: 0; transition: opacity .35s ease; }
.motion-enabled .journey-path.is-visible > svg > path { stroke-dashoffset: 0; }
.motion-enabled .journey-path.is-visible .journey-path-start { opacity: 1; transition-delay: .12s; }
.motion-enabled .journey-path.is-visible .journey-path-pin { opacity: 1; transition-delay: 1.45s; }

.internship-callout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border-radius: 32px;
  background: var(--forest-dark);
  color: white;
  box-shadow: var(--shadow);
}
.internship-copy { padding: clamp(36px, 6vw, 76px); }
.internship-copy h2 { max-width: 700px; }
.internship-copy p { color: rgba(255,255,255,.78); }
.internship-list {
  display: grid;
  padding: 42px;
  align-content: center;
  gap: 12px;
  background: rgba(255,255,255,.06);
}
.internship-list span {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  font-weight: 800;
}

.partner-strip {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 48px;
}
.partner-strip img {
  width: 180px;
  border-radius: 18px;
  mix-blend-mode: multiply;
}
.partner-strip h2 { font-size: clamp(2rem, 4vw, 3.5rem); }

/* Christian Steps partnership feature: reuse a local copy of the Christian Steps home banner. */
.mission-band:has(.partner-strip) {
  background-image:
    linear-gradient(90deg, rgba(5, 43, 33, .96) 0%, rgba(7, 49, 37, .82) 48%, rgba(7, 49, 37, .4) 100%),
    url("/assets/christian-steps-home-banner.png");
  background-position: center;
  background-size: cover;
}
.mission-band .partner-strip {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.mission-band .partner-strip h2 { color: #fffdf5; }
.mission-band .partner-strip .section-lead { color: rgba(255, 253, 245, .88); }
.mission-band .partner-strip .eyebrow { color: var(--gold); }
.mission-band .partner-strip .text-link,
.mission-band .partner-strip .text-link:visited { color: #fffdf5; }
.mission-band .partner-strip img {
  padding: 10px;
  background: rgba(255, 253, 245, .95);
  mix-blend-mode: normal;
}

.page-hero {
  position: relative;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  height: 33vh;
  min-height: 320px;
  max-height: 420px;
  margin: 12px auto;
  overflow: hidden;
  place-items: end start;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: var(--forest-dark);
  box-shadow: var(--shadow);
  color: white;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,39,32,.9), rgba(11,39,32,.3)),
              linear-gradient(0deg, rgba(11,39,32,.8), transparent);
  content: "";
}
.page-hero .hero-content {
  width: 100%;
  padding: 32px 30px;
}
.page-hero h1 { font-size: clamp(2.9rem, 4.4vw, 4rem); }

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
}
.prose h2 { font-size: clamp(2rem, 2.7vw, 2.15rem); }
.prose p, .prose li { color: var(--muted); font-size: 1rem; }
.prose strong { color: var(--ink); }
.prose ul { padding-left: 1.2rem; }
.prose li + li { margin-top: 10px; }

.info-card {
  position: sticky;
  top: 104px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--cream);
}
.info-card h3 { margin-bottom: 18px; font-size: 1.45rem; }
.info-card dl { margin: 0 0 24px; }
.info-card dt {
  margin-top: 15px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.info-card dd { margin: 2px 0 0; font-weight: 800; }

.ministry-list {
  display: grid;
  margin: 34px 0;
  gap: 14px;
}
.ministry-item {
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: var(--cream);
}
.ministry-item h3 { margin: 0 0 5px; font-size: 1.3rem; }
.ministry-item p { margin: 0; }

.notice {
  padding: 18px 20px;
  border: 1px solid rgba(217,155,66,.5);
  border-radius: 15px;
  background: #fff8e9;
  color: #66502f;
  font-size: .93rem;
}

.tracks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.track {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.track h3 { margin-bottom: 10px; font-size: 1.45rem; }
.track p { margin: 0; color: var(--muted); }

/* Internship pathways and placement possibilities */
.internship-hero { min-height: 390px; }
.internship-hero img { object-position: center 44%; }
.internship-hero .hero-content > p:not(.eyebrow) { max-width: 680px; }
.internship-hero .hero-actions { margin-top: 22px; }
.internship-hero .button.secondary {
  border-color: rgba(255,255,255,.72);
  color: white;
}
.internship-hero .button.secondary:hover,
.internship-hero .button.secondary:focus-visible { background: rgba(255,255,255,.13); }
.internship-pathways { scroll-margin-top: 100px; }
.internship-section-head { margin-bottom: 18px; }
.track-guidance {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: .9rem;
  font-weight: 800;
}
.track-guidance > span {
  display: grid;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(217,155,66,.18);
  color: var(--coral);
  font-size: 1.05rem;
  place-items: center;
}
.internship-track {
  position: relative;
  padding: 0;
  align-self: start;
  overflow: hidden;
  border-color: rgba(39,93,77,.17);
  background: linear-gradient(150deg, #fff, #fffdf8);
}
.internship-track[open] {
  border-color: rgba(217,155,66,.62);
  box-shadow: 0 20px 44px rgba(23,63,53,.14);
}
.internship-track summary {
  display: block;
  padding: 28px;
  list-style: none;
  cursor: pointer;
}
.internship-track summary::-webkit-details-marker { display: none; }
.internship-track summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -5px;
}
.internship-track[open] summary { border-bottom: 1px solid rgba(39,93,77,.12); }
.track-title {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
}
.track-summary-copy { display: block; color: var(--muted); }
.track-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: #e8f1ed;
  color: var(--forest);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  place-items: center;
}
.internship-track:nth-child(2n) .track-number { background: #fff0df; color: #a34c38; }
.track-toggle-row {
  display: flex;
  margin-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--coral);
  font-size: .8rem;
  font-weight: 900;
}
.track-toggle-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid rgba(201,103,78,.35);
  border-radius: 50%;
  background: rgba(201,103,78,.08);
}
.track-toggle-icon::before,
.track-toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%,-50%);
  transition: transform .25s ease;
}
.track-toggle-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.internship-track[open] .track-toggle-icon::after { transform: translate(-50%,-50%) rotate(0); }
.internship-track[open] .track-toggle-label { font-size: 0; }
.internship-track[open] .track-toggle-label::before { font-size: .8rem; content: "Minimize details"; }
.track-expanded-content {
  padding: 24px 28px 28px;
  background: rgba(232,241,237,.55);
}
.track-expanded-content .track-detail-label {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.track-expanded-content ul {
  margin: 0 0 20px;
  padding-left: 1.15rem;
  color: #435c54;
}
.track-expanded-content li + li { margin-top: 8px; }
.track-expanded-content p:last-child {
  padding-top: 18px;
  border-top: 1px solid rgba(39,93,77,.13);
  color: #526760;
  font-size: .92rem;
}
.track-expanded-content strong { color: var(--ink); }

main > .section.internship-opportunities-section {
  scroll-margin-top: 100px;
  border-color: rgba(217,155,66,.32);
  background:
    radial-gradient(circle at 92% 2%, rgba(217,155,66,.14), transparent 28%),
    linear-gradient(145deg, #fffdf8, #fff8e9);
}
.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: 18px;
}
.internship-opportunity {
  position: relative;
  grid-column: span 4;
  min-height: 315px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid rgba(39,93,77,.17);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 28px rgba(23,63,53,.08);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.internship-opportunity::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--gold);
  content: "";
}
.internship-opportunity:nth-child(2n)::before { background: var(--coral); }
.internship-opportunity:hover,
.internship-opportunity:focus-within {
  transform: translateY(-4px);
  border-color: rgba(217,155,66,.55);
  box-shadow: 0 20px 44px rgba(23,63,53,.14);
}
.motion-enabled .internship-opportunity.reveal-item.is-visible:hover,
.motion-enabled .internship-opportunity.reveal-item.is-visible:focus-within { transform: translateY(-4px); }
.opportunity-topline {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.duration-badge {
  padding: 5px 9px;
  border: 1px solid rgba(39,93,77,.16);
  border-radius: 999px;
  background: #edf5f1;
  letter-spacing: .02em;
  white-space: nowrap;
}
.opportunity-number {
  position: absolute;
  top: 44px;
  right: 22px;
  color: rgba(39,93,77,.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.7rem;
  font-weight: 800;
  line-height: 1;
}
.opportunity-region {
  position: relative;
  margin: 0 0 5px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.internship-opportunity h3 {
  position: relative;
  max-width: 82%;
  margin: 0 0 18px;
  color: var(--forest-dark);
  font-size: clamp(1.7rem,2.4vw,2.15rem);
  line-height: 1.08;
}
.opportunity-abbreviation {
  margin: -10px 0 18px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 800;
}
.internship-opportunity dl {
  position: relative;
  display: grid;
  margin: 0;
  gap: 12px;
}
.internship-opportunity dl > div { padding-top: 12px; border-top: 1px solid rgba(39,93,77,.11); }
.internship-opportunity dt {
  color: var(--muted);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.internship-opportunity dd { margin: 2px 0 0; color: var(--ink); font-weight: 800; }
.internship-brand-mark {
  display: grid;
  grid-column: span 4;
  min-height: 315px;
  padding: 24px;
  align-content: center;
  justify-items: center;
  text-align: center;
}
.internship-brand-mark img {
  width: min(168px, 70%);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(23,63,53,.12));
}
.internship-brand-mark p {
  margin: 14px 0 0;
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem,2.5vw,2.15rem);
  font-weight: 700;
  letter-spacing: -.025em;
}
.opportunity-next-step {
  display: flex;
  margin-top: 22px;
  padding: clamp(26px,4vw,38px);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 22px;
  background: var(--forest-dark);
  color: white;
}
.opportunity-next-step > div { max-width: 790px; }
.opportunity-next-step .eyebrow { color: #f3c780; }
.opportunity-next-step h3 { margin: 0 0 8px; font-size: clamp(1.6rem,2.6vw,2.15rem); }
.opportunity-next-step p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.8); }
.opportunity-next-step .button { flex: 0 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 68px;
}
.portrait {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  place-items: center;
  border-radius: 34px;
  background: linear-gradient(145deg, #e8d9bd, #b9d0c7);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.portrait-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  color: var(--forest-dark);
  text-align: center;
  backdrop-filter: blur(10px);
}

.quote {
  margin: 38px 0;
  padding: 28px 0 28px 28px;
  border-left: 4px solid var(--gold);
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.28;
}

/* On-site conversation scheduling */
.schedule-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(calc(100% - 32px), 1180px);
  min-height: 330px;
  margin: 12px auto 0;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  align-items: end;
  background:
    linear-gradient(110deg, rgba(11,39,32,.96), rgba(23,82,67,.9) 58%, rgba(39,93,77,.72)),
    url("/assets/athens.jpg") center 44% / cover;
  color: white;
}
.schedule-hero::before {
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -155px;
  width: 430px;
  height: 430px;
  border: 56px solid rgba(217,155,66,.18);
  border-radius: 50%;
  content: "";
}
.schedule-hero-inner {
  width: min(100% - 64px, 920px);
  padding: clamp(44px, 8vw, 78px) 0;
}
.schedule-hero h1 {
  max-width: 780px;
  margin: 0 0 16px;
  color: white;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: .98;
}
.schedule-hero .schedule-lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.schedule-section {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 68px) clamp(16px, 4vw, 42px) 48px;
  background:
    radial-gradient(circle at 94% 8%, rgba(217,155,66,.14), transparent 22rem),
    #edf3ef;
}
.schedule-intro {
  display: grid;
  max-width: 1040px;
  margin: 0 auto 26px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
}
.schedule-intro h2 { margin: 0 0 8px; font-size: clamp(2rem, 3vw, 2.65rem); }
.schedule-intro p { max-width: 700px; margin: 0; color: var(--muted); }
.schedule-duration {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(39,93,77,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: var(--forest);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.scheduler-card {
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(39,93,77,.14);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}
.scheduler-card .calendly-inline-widget { min-width: 280px; height: 720px; }
.calendar-fallback {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .92rem;
  text-align: center;
}
.calendar-fallback a { color: var(--forest); font-weight: 800; }

@media (max-width: 850px) {
  .schedule-hero,
  .schedule-section { width: min(calc(100% - 18px), 1180px); }
  .schedule-hero { min-height: 360px; border-radius: 18px 18px 0 0; }
  .schedule-hero-inner { width: calc(100% - 44px); }
  .schedule-intro { grid-template-columns: 1fr; align-items: start; gap: 15px; }
  .scheduler-card .calendly-inline-widget { height: 760px; }
}

@media (max-width: 560px) {
  .schedule-hero,
  .schedule-section { width: 100%; }
  .schedule-hero { min-height: 350px; margin-top: 0; border-radius: 0; }
  .schedule-hero-inner { width: calc(100% - 36px); padding-block: 54px; }
  .schedule-hero h1 { font-size: clamp(2.5rem, 13vw, 3.8rem); }
  .schedule-section { padding: 34px 8px 42px; }
  .schedule-intro { padding-inline: 10px; }
  .scheduler-card { border-radius: 14px; }
  .scheduler-card .calendly-inline-widget { height: 800px; }
  .calendar-fallback { padding-inline: 14px; }
}

.cta-band {
  background: var(--coral);
  color: white;
}
.cta-inner {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  padding: 72px 0;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-inner h2 { margin: 0 0 10px; font-size: clamp(2rem, 2.7vw, 2.15rem); }
.cta-inner p { max-width: 650px; margin: 0; color: rgba(255,255,255,.86); }

.site-footer {
  padding: 64px 0 28px;
  border-radius: 0 0 24px 24px;
  background: #102e27;
  color: white;
  box-shadow: 0 18px 44px rgba(23, 63, 53, .10);
}

.giving-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: start;
  gap: 48px;
}
.giving-intro h2 { margin-bottom: 18px; }
.giving-intro p { color: var(--muted); }
.giving-status {
  padding: 28px;
  border: 1px solid rgba(217,155,66,.48);
  border-radius: var(--radius);
  background: #fff8e9;
  box-shadow: 0 14px 34px rgba(23,63,53,.10);
}
.giving-status h3 { margin-bottom: 10px; font-size: 1.45rem; }
.giving-status p:last-child { margin-bottom: 0; }
.giving-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.giving-option {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 28px rgba(23,63,53,.08);
}
.giving-option .value-number { margin-bottom: 24px; }
.giving-option h3 { margin-bottom: 10px; font-size: 1.45rem; }
.giving-option p { margin: 0; color: var(--muted); }
.funds-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.funds-row {
  display: grid;
  grid-template-columns: minmax(190px, .7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 24px 28px;
}
.funds-row + .funds-row { border-top: 1px solid var(--line); }
.funds-row h3 { margin: 0; font-size: 1.22rem; }
.funds-row p { margin: 0; color: var(--muted); }
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.commitment {
  padding: 24px;
  border-left: 4px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: var(--cream);
}
.commitment h3 { margin-bottom: 7px; font-size: 1.25rem; }
.commitment p { margin: 0; color: var(--muted); }
.giving-note {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: 18px;
  background: var(--forest-dark);
  color: white;
}
.giving-note p { margin: 0; color: rgba(255,255,255,.82); }
.footer-grid {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: auto;
  grid-template-columns: 1.4fr repeat(2, .8fr);
  gap: 42px;
}
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.7); }
.footer-brand {
  display: block;
  width: min(100%, 430px);
  margin: -12px 0 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--paper);
}
.footer-brand img {
  width: 100%;
  height: auto;
}
.footer-grid h3 { margin-bottom: 14px; font-size: 1rem; font-family: inherit; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,.54);
  font-size: .85rem;
}
.footer-copyright { justify-self: start; }
.footer-bottom .developer-credit { justify-self: center; }
.footer-tagline { justify-self: end; text-align: right; }
.site-version {
  margin: 9px auto 0;
  color: rgba(255,255,255,.46);
  font-size: .7rem;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-copyright,
  .footer-bottom .developer-credit,
  .footer-tagline { justify-self: center; text-align: center; }
}


@media (max-width: 850px) {
  body > main,
  body > .site-header,
  body > .cta-band,
  body > .site-footer {
    width: min(calc(100% - 18px), 1240px);
  }
  .site-header { margin-top: 9px; border-radius: 18px 18px 0 0; }
  .site-footer { border-radius: 0 0 18px 18px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    padding: 22px 16px;
    align-items: stretch;
    border-top: 1px solid rgba(25,50,43,.14);
    background: var(--cream);
    flex-direction: column;
  }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .hero { width: min(calc(100% - 18px),1180px); height: auto; min-height: 620px; max-height: none; }
  .section { padding-block: 72px; }
  main > .section { padding: 44px 22px; border-radius: 18px; }
  main > .section.compact { padding-block: 40px; }
  .mission-band { width: min(calc(100% - 18px),1180px); border-radius: 18px; }
  .mission-band .section { padding: 44px 22px; }
  .page-hero {
    width: min(calc(100% - 18px),1180px);
    min-height: 340px;
    border-radius: 18px;
  }
  .page-hero .hero-content { padding: 28px 22px; }
  .section-head, .cta-inner { align-items: flex-start; flex-direction: column; }
  .three-up, .tracks { grid-template-columns: 1fr; }
  .internship-opportunity,
  .internship-opportunity:nth-child(n) { grid-column: span 6; }
  .internship-brand-mark { grid-column: span 6; }
  .opportunity-next-step { align-items: flex-start; flex-direction: column; }
  .approach-panel { grid-template-columns: 1fr; }
  .approach-skill-list { grid-template-columns: 1fr; }
  .approach-skill-list li:last-child { grid-column: auto; }
  .trip-card, .trip-card:nth-child(n) { grid-column: span 12; min-height: 340px; }
  .trip-card.has-schedule { min-height: 390px; }
  .trip-card.trip-card-multi-schedule { min-height: 440px; }
  .brochure-callout { grid-template-columns: 1fr; }
  .brochure-callout-actions { max-width: none; align-items: flex-start; text-align: left; }
  .brochure-callout-actions .button { width: auto; }
  .internship-callout, .content-grid, .about-grid, .giving-intro { grid-template-columns: 1fr; }
  .giving-options { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .partner-strip { grid-template-columns: 1fr; }
  .partner-strip img { width: 150px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body > main,
  body > .site-header,
  body > .cta-band,
  body > .site-footer { width: 100%; }
  .site-header { margin-top: 0; border-radius: 0; }
  .site-footer { border-radius: 0; }
  .floating-donate {
    left: max(10px, env(safe-area-inset-left));
    bottom: max(10px, env(safe-area-inset-bottom));
    min-height: 46px;
    padding-inline: 18px;
    font-size: .88rem;
  }
  .funds-row { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  .commitment-grid { grid-template-columns: 1fr; }
  .hero { width: calc(100% - 16px); border-radius: 16px; }
  main > .section { width: calc(100% - 16px); padding: 38px 18px; border-radius: 16px; }
  .mission-band { width: calc(100% - 16px); border-radius: 16px; }
  .mission-band .section { padding: 38px 18px; }
  .page-hero {
    width: calc(100% - 16px);
    height: auto;
    min-height: 360px;
    max-height: none;
    border-radius: 16px;
  }
  .page-hero .hero-content { padding: 26px 18px; }
  .brand-logo { width: 230px; height: 86px; }
  h1 { font-size: 2.7rem; }
  .hero-content { padding-block: 96px 56px; }
  .intro-replay-button { top: 14px; right: 14px; }
  .hero-actions .button { width: 100%; }
  .trip-card-content { right: 20px; bottom: 20px; left: 20px; }
  .trip-schedule { width: min(100%, 240px); }
  .trip-schedule li { padding: 7px 9px; }
  .internship-copy, .internship-list { padding: 28px; }
  .internship-invitation-intro .invitation-intro-title { font-size: clamp(2.45rem, 11.5vw, 4rem); }
  .internship-opportunity,
  .internship-opportunity:nth-child(n),
  .internship-brand-mark { grid-column: span 12; }
  .internship-brand-mark { min-height: 250px; }
  .internship-track summary,
  .track-expanded-content { padding-right: 22px; padding-left: 22px; }
  .opportunity-next-step .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .journeys-section .journey-path {
    min-height: 0;
    margin: -16px 0 20px;
    padding: 16px 18px 12px;
    grid-template-columns: 1fr;
    gap: 4px;
    border-radius: 18px;
    text-align: center;
  }
  .journey-invitation-copy { padding: 0; }
  .journeys-section .journey-path svg { height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .reveal-item { opacity: 1 !important; transform: none !important; }
  .invitation-intro { display: none !important; }
  .intro-replay-button { display: none !important; }
}

/* Inline PayPal and Venmo giving */
.hosted-giving {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .8fr);
  align-items: start;
  gap: clamp(30px, 6vw, 64px);
  scroll-margin-top: 100px;
}
.hosted-giving-copy h2 { margin-bottom: 16px; }
.hosted-giving-copy > p { color: var(--muted); }
.hosted-giving-note {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: var(--cream);
}
.paypal-embed {
  width: 100%;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 28px rgba(23,63,53,.08);
}
.paypal-embed noscript p { margin: 0; color: var(--muted); font-size: .9rem; }
.giving-frequency {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}
.giving-frequency legend,
.giving-amount-field > label {
  display: block;
  margin-bottom: 9px;
  color: var(--forest-dark);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .035em;
}
.giving-frequency-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}
.giving-choice-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.giving-frequency-options label {
  display: grid;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  place-items: center;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.giving-choice-input:checked + label {
  border-color: rgba(217,155,66,.62);
  background: white;
  box-shadow: 0 5px 14px rgba(23,63,53,.1);
  color: var(--forest-dark);
}
.giving-choice-input:focus-visible + label {
  outline: 3px solid rgba(217,155,66,.45);
  outline-offset: 2px;
}
.giving-amount-field { margin-bottom: 14px; }
.giving-amount-input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 60px;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 2px solid rgba(39,93,77,.32);
  border-radius: 16px;
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.giving-amount-input:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(217,155,66,.16);
}
.giving-amount-input > span:first-child {
  color: var(--forest-dark);
  font-size: 1.45rem;
  font-weight: 900;
}
.giving-amount-input input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--forest-dark);
  font: inherit;
  font-size: 1.45rem;
  font-weight: 900;
}
.giving-amount-input input[aria-invalid="true"] { color: var(--coral); }
.giving-currency {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.giving-quick-amounts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}
.giving-quick-amounts button {
  min-height: 42px;
  padding: 7px 9px;
  border: 1px solid rgba(39,93,77,.3);
  border-radius: 999px;
  background: white;
  color: var(--forest);
  font: inherit;
  font-size: .88rem;
  font-weight: 900;
  cursor: pointer;
}
.giving-quick-amounts button:hover,
.giving-quick-amounts button:focus-visible,
.giving-quick-amounts button[aria-pressed="true"] {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}
.giving-cadence-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-align: center;
}
.giving-payment-label {
  margin: 0 0 12px;
  color: var(--forest-dark);
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}
.giving-paypal-buttons { min-height: 48px; }
.giving-status-message {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
  text-align: center;
}
.giving-status-message[data-status="success"] { color: var(--forest); font-weight: 800; }
.giving-status-message[data-status="error"] { color: #9e3d2c; font-weight: 800; }
.giving-checkout-note,
.giving-fallback {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.45;
  text-align: center;
}
.giving-fallback {
  padding: 12px;
  border-radius: 12px;
  background: #fff4e2;
}
.giving-fallback a,
.paypal-embed noscript a { color: var(--forest); font-weight: 900; }
@media (max-width: 850px) { .hosted-giving { grid-template-columns: 1fr; } }
@media (max-width: 430px) {
  .giving-frequency-options label { min-height: 40px; }
  .giving-quick-amounts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .giving-quick-amounts [data-giving-other] { grid-column: 1 / -1; }
}

.developer-credit {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.developer-credit:hover,
.developer-credit:focus-visible { color: #fff; }
.developer-credit img {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  opacity: .8;
}
@media (max-width: 560px) {
  .developer-credit { max-width: 19rem; }
}


/* Resources for the Journey */
.resource-hero img { object-position:center 44%; }
.resource-intro { display:grid; grid-template-columns:minmax(0,820px); justify-content:center; }
.resource-intro-copy > p:not(.eyebrow) { color:var(--muted); font-size:1.08rem; }
.resource-tools { display:grid; grid-template-columns:minmax(260px,1fr) 1.4fr; gap:28px; margin-bottom:38px; align-items:end; }
.resource-search { display:grid; gap:7px; color:var(--forest); font-weight:850; }
.resource-search input { width:100%; min-height:50px; padding:10px 16px; border:1px solid var(--line); border-radius:14px; background:white; color:var(--ink); font:inherit; }
.resource-search input:focus { outline:3px solid rgba(217,155,66,.28); border-color:var(--gold); }
.resource-filter-label { display:block; margin-bottom:7px; color:var(--forest); font-weight:850; }
.resource-filters { display:flex; flex-wrap:wrap; gap:9px; }
.resource-filter { min-height:42px; padding:7px 15px; border:1px solid var(--forest); border-radius:999px; background:transparent; color:var(--forest); font:inherit; font-size:.9rem; font-weight:850; cursor:pointer; }
.resource-filter[aria-pressed="true"] { background:var(--forest); color:white; }
.featured-resource { margin-bottom:28px; }
.featured-resource:empty { display:none; }
.featured-resource-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.resource-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.resource-card { display:flex; min-width:0; padding:28px; border:1px solid var(--line); border-radius:var(--radius); background:white; box-shadow:0 10px 28px rgba(23,63,53,.08); flex-direction:column; }
.resource-card-featured { padding:clamp(28px,5vw,48px); border-color:rgba(217,155,66,.55); background:linear-gradient(135deg,#fffdf8,#fff7e7); }
.resource-card-top { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.resource-type,.resource-collection { display:inline-flex; width:fit-content; padding:5px 10px; border-radius:999px; font-size:.72rem; font-weight:900; letter-spacing:.05em; text-transform:uppercase; }
.resource-type { background:var(--forest); color:white; }
.resource-collection { background:#f4e5c8; color:#6b4b1e; }
.resource-card h3 { margin:18px 0 7px; font-size:1.65rem; }
.resource-card > p { color:var(--muted); }
.resource-subtitle { margin-top:0; color:var(--forest)!important; font-family:Georgia,"Times New Roman",serif; font-size:1.06rem; }
.resource-meta { margin-top:auto; padding-top:16px; color:var(--muted); font-size:.82rem; font-weight:750; }
.resource-related { display:grid; gap:5px; margin-top:16px; padding:14px 16px; border-left:3px solid var(--gold); background:var(--cream); font-size:.83rem; }
.resource-related a { color:var(--forest); font-weight:800; text-decoration-thickness:1px; text-underline-offset:3px; }
.resource-action { margin-top:20px; }
.resource-download-actions { display:flex; flex-wrap:wrap; gap:14px 18px; align-items:center; }
.resource-audio { display:block; width:100%; min-height:54px; accent-color:var(--forest); }
.article-soundtrack { margin:0 0 28px; padding:clamp(20px,4vw,28px); border:1px solid rgba(217,155,66,.5); border-radius:20px; background:linear-gradient(135deg,#fffdf8,#fff4e5); box-shadow:0 12px 28px rgba(23,63,53,.08); }
.article-soundtrack .eyebrow { margin:0; }
.article-soundtrack h2 { margin:.25rem 0 .5rem; font-size:clamp(1.55rem,3vw,2rem); }
.article-soundtrack-copy > p:last-child { margin:.35rem 0 1rem; color:var(--muted); }
.article-soundtrack-player { display:block; width:100%; min-height:54px; accent-color:var(--forest); }
.article-soundtrack-actions { display:flex; flex-wrap:wrap; gap:12px 16px; margin-top:13px; align-items:center; }
.article-soundtrack-status { flex:1 1 190px; margin:0; color:var(--muted); font-size:.82rem; line-height:1.45; }
.article-lyrics-toggle { margin-left:auto; white-space:nowrap; }
.article-companion-links { display:grid; gap:8px; margin:18px 0 22px; }
.article-companion-links a { color:var(--forest); font-weight:850; }
.resource-coming { color:var(--coral); font-weight:900; }
.resource-empty { padding:28px; border:1px dashed var(--line); border-radius:18px; color:var(--muted); text-align:center; }
.resource-article-layout { display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:clamp(34px,6vw,70px); align-items:start; }
.resource-article { max-width:760px; }
.resource-article h2 { margin-top:2.4rem; font-size:clamp(1.75rem,3vw,2.3rem); }
.resource-article > p { font-size:1.04rem; }
.resource-byline { display:flex; flex-wrap:wrap; gap:8px 18px; margin-bottom:28px; padding-bottom:18px; border-bottom:1px solid var(--line); color:var(--muted); font-size:.85rem; font-weight:800; }
.resource-byline .button { margin-left:auto; }
.resource-opening-quote { margin-top:0; }
.resource-scripture { margin:24px 0 8px; padding:22px 24px; border-left:4px solid var(--gold); border-radius:0 16px 16px 0; background:#fff8e9; color:#3e4b45; }
.resource-scripture p { margin:.5rem 0; }
.resource-citation { margin-top:0; color:var(--forest)!important; font-size:.85rem!important; font-weight:900; }
.resource-article-rail { position:sticky; top:104px; display:grid; gap:22px; align-self:start; }
.resource-article-rail.lyrics-open { position:static; }
.resource-article-aside { position:static; padding:26px; border-radius:var(--radius); background:var(--cream); }
.resource-article-aside h2 { font-size:1.6rem; }
.resource-article-aside p { color:var(--muted); }
.article-lyrics { padding:24px; border:1px solid rgba(217,155,66,.45); border-radius:var(--radius); background:#fffdf8; box-shadow:0 10px 28px rgba(23,63,53,.08); }
.article-lyrics[hidden] { display:none; }
.article-lyrics-section + .article-lyrics-section { margin-top:1.55rem; padding-top:1.35rem; border-top:1px solid var(--line); }
.article-lyrics-section h2 { margin:0 0 .7rem; color:var(--coral); font-family:inherit; font-size:.76rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.article-lyrics-section p { margin:0; color:var(--ink); font-size:.91rem; line-height:1.68; }
.article-lyrics-section p + p { margin-top:.9rem; }
.resource-article > .article-lyrics { margin-bottom:28px; }
@media (max-width:850px) { .resource-tools,.resource-article-layout,.featured-resource-grid { grid-template-columns:1fr; } .resource-article-rail,.resource-article-aside { position:static; } .article-lyrics { padding:clamp(22px,6vw,32px); } }
@media (max-width:680px) { .resource-grid { grid-template-columns:1fr; } .resource-filter { flex:1 1 auto; } .resource-download-actions,.article-soundtrack-actions { align-items:stretch; flex-direction:column; } .resource-download-actions .button,.resource-byline .button,.article-soundtrack-actions .button { width:100%; margin-left:0; } .article-lyrics-toggle { margin-left:0; } }

/* Trip and internship interest form */
.interest-page-hero > img { object-position: center 42%; }
.interest-intro-section { padding-bottom: clamp(64px,8vw,100px); }
.interest-form { margin-top: 30px; }
.interest-form-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(340px,.92fr);
  gap: 22px;
  align-items: start;
}
.interest-form-panel {
  min-width: 0;
  padding: clamp(24px,3.5vw,38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 38px rgba(23,63,53,.09);
}
.interest-contact-panel { position: sticky; top: 100px; }
.form-panel-heading { margin-bottom: 28px; }
.form-panel-heading h3 { margin: 7px 0 5px; color: var(--forest-dark); font-size: clamp(1.65rem,2.5vw,2rem); }
.form-panel-heading p { margin: 0; color: var(--muted); }
.form-step {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #edf5f1;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.interest-choice-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.interest-choice-group + .interest-choice-group { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.interest-choice-group legend {
  width: 100%;
  margin-bottom: 13px;
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}
.interest-choice-group.is-recommended-group legend::after {
  display: inline-flex;
  margin-left: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f4e5c8;
  color: #6b4b1e;
  content: "Start here";
  font-family: "Segoe UI", Aptos, system-ui, sans-serif;
  font-size: .65rem;
  letter-spacing: .06em;
  vertical-align: middle;
  text-transform: uppercase;
}
.interest-choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; }
.interest-choice {
  display: flex;
  min-width: 0;
  min-height: 88px;
  padding: 14px;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid rgba(39,93,77,.18);
  border-radius: 16px;
  background: #fffdf8;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.interest-choice:hover { transform: translateY(-2px); border-color: rgba(217,155,66,.7); box-shadow: 0 8px 22px rgba(23,63,53,.08); }
.interest-choice:has(input:checked) { border-color: var(--forest); background: #edf5f1; box-shadow: inset 0 0 0 1px var(--forest); }
.interest-choice:has(input:focus-visible) { outline: 3px solid rgba(217,155,66,.36); outline-offset: 2px; }
.interest-choice input { width: 19px; height: 19px; margin: 3px 0 0; flex: 0 0 auto; accent-color: var(--forest); }
.interest-choice span { display: grid; min-width: 0; gap: 3px; line-height: 1.35; }
.interest-choice strong { color: var(--forest-dark); }
.interest-choice small { color: var(--muted); font-size: .78rem; line-height: 1.4; }
.form-field-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px 14px; }
.form-field { display: grid; min-width: 0; margin: 0; padding: 0; border: 0; gap: 6px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field > label,
.contact-preference-field legend { color: var(--forest-dark); font-size: .86rem; font-weight: 850; line-height: 1.4; }
.field-optional { margin-left: 5px; color: var(--muted); font-size: .72rem; font-weight: 650; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%;
  min-height: 49px;
  padding: 10px 13px;
  border: 1px solid rgba(39,93,77,.22);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
}
.form-field textarea { min-height: 124px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { outline: 3px solid rgba(217,155,66,.28); border-color: var(--gold); }
.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] { border-color: #9e3d2c; background: #fff8f5; }
.inline-choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.inline-choice-row label {
  display: inline-flex;
  min-height: 43px;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf8;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 750;
}
.inline-choice-row input { width: 17px; height: 17px; accent-color: var(--forest); }
.form-field-error { margin: 3px 0 0; color: #9e3d2c; font-size: .78rem; font-weight: 800; line-height: 1.4; }
.consent-choice {
  display: flex;
  margin-top: 24px;
  padding: 14px;
  align-items: flex-start;
  gap: 11px;
  border-radius: 14px;
  background: #f7f2e8;
  cursor: pointer;
  font-size: .84rem;
  line-height: 1.5;
}
.consent-choice input { width: 18px; height: 18px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--forest); }
.interest-privacy-note { margin: 14px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.interest-submit-row { display: flex; margin-top: 22px; align-items: center; flex-wrap: wrap; gap: 14px 18px; }
.interest-submit-row .button { border: 0; font: inherit; font-weight: 900; cursor: pointer; }
.interest-submit-row .button:disabled { opacity: .62; cursor: wait; transform: none; }
.interest-form-status { min-height: 1.5em; margin-top: 14px; font-size: .86rem; line-height: 1.5; }
.interest-form-status:empty { min-height: 0; }
.interest-form-status[data-status="working"] { color: var(--muted); }
.interest-form-status[data-status="notice"] { padding: 12px 14px; border-radius: 12px; background: #fff4dc; color: #6b4b1e; font-weight: 800; }
.interest-form-status[data-status="error"] { padding: 12px 14px; border-radius: 12px; background: #fff0ea; color: #8a3627; font-weight: 800; }
.interest-success-panel {
  display: grid;
  grid-template-columns: minmax(120px,190px) minmax(0,1fr);
  margin-top: 30px;
  padding: clamp(28px,5vw,50px);
  align-items: center;
  gap: clamp(25px,5vw,55px);
  border: 1px solid rgba(217,155,66,.42);
  border-radius: var(--radius);
  background: linear-gradient(135deg,#fffdf8,#fff3da);
  box-shadow: var(--shadow);
}
.interest-success-panel[hidden] { display: none; }
.interest-success-panel > img { width: 100%; filter: drop-shadow(0 12px 22px rgba(23,63,53,.14)); }
.interest-success-panel h2 { margin: 4px 0 8px; }
.interest-success-panel p:not(.eyebrow) { margin: 0; color: var(--muted); }
.interest-success-panel .hero-actions { margin-top: 20px; }
.interest-process-band .info-card p { margin-bottom: 0; }
.journey-interest-callout {
  display: flex;
  margin-top: 22px;
  padding: 22px 26px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(217,155,66,.42);
  border-radius: 18px;
  background: #fff8e9;
}
.journey-interest-callout p { margin: 0; color: var(--muted); }
.journey-interest-callout strong { color: var(--forest-dark); }
.opportunity-interest-link { position: relative; display: inline-block; margin-top: 18px; color: var(--forest); }
.info-card-actions { display: grid; margin-top: 22px; gap: 12px; }
.info-card-actions .button { width: 100%; text-align: center; }
.info-card-actions .text-link { justify-self: center; }

@media (max-width: 980px) {
  .interest-form-grid { grid-template-columns: 1fr; }
  .interest-contact-panel { position: static; }
}
@media (max-width: 700px) {
  .interest-choice-grid,
  .form-field-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .interest-success-panel { grid-template-columns: 1fr; text-align: center; }
  .interest-success-panel > img { width: min(160px,55%); margin-inline: auto; }
  .interest-success-panel .hero-actions { justify-content: center; }
  .journey-interest-callout { align-items: stretch; flex-direction: column; }
  .journey-interest-callout .button { width: 100%; }
}
@media (max-width: 480px) {
  .interest-form-panel { padding: 21px 17px; }
  .interest-submit-row { align-items: stretch; flex-direction: column; }
  .interest-submit-row .button { width: 100%; }
}
