:root {
  --shell-teal: #132a2d;
  --shell-teal-deep: #0d2022;
  --shell-sand: #f8f1e5;
  --shell-paper: #fffdf8;
  --shell-orange: #f58a50;
  --shell-orange-deep: #d96738;
  --shell-ink-soft: #536164;
  --shell-line: rgba(19, 42, 45, .11);
  --shell-width: 1200px;
  --shell-radius: 24px;
}

html { scroll-padding-top: 88px; }
body { overflow-x: clip; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 300;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--shell-teal);
  font: 800 13px/1 "Nunito", sans-serif;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Shared product navigation ------------------------------------------------ */
body .nav {
  position: sticky;
  inset: 0 0 auto;
  z-index: 90;
  width: 100%;
  min-height: 68px;
  height: 68px;
  box-sizing: border-box;
  padding: 0;
  background: rgba(255, 253, 248, .94);
  border: 0;
  border-bottom: 1px solid var(--shell-line);
  box-shadow: 0 8px 30px -26px rgba(19, 42, 45, .55);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

body .nav .nav-inner {
  width: min(var(--shell-width), calc(100% - 40px));
  min-height: 0;
  height: 67px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

body .nav .nav-logo {
  flex: 1 1 260px;
  min-width: 190px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--shell-teal);
  font: 800 15px/1.1 "Nunito", sans-serif;
  letter-spacing: -.02em;
  text-decoration: none;
}

body .nav .nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(19, 42, 45, .08);
}

body .nav .nav-logo .short { display: none; }
body .nav .nav-logo .full { display: inline; }

body .nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}

body .nav .nav-links a {
  position: relative;
  padding: 26px 0 24px;
  color: var(--shell-ink-soft);
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

body .nav .nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--shell-orange);
  transition: left .18s ease, right .18s ease;
}

body .nav .nav-links a:hover,
body .nav .nav-links a:focus-visible,
body .nav .nav-links a[aria-current="page"] { color: var(--shell-teal); }
body .nav .nav-links a:hover::after,
body .nav .nav-links a:focus-visible::after,
body .nav .nav-links a[aria-current="page"]::after { left: 0; right: 0; }

body .nav .lang-switch {
  flex: 0 0 auto;
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--shell-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

body .nav .lang-link {
  min-width: 31px;
  height: 28px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--shell-ink-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
}

body .nav .lang-link.is-active {
  color: var(--shell-paper);
  background: var(--shell-teal);
}

body .nav .btn.btn-sm,
body .nav .nav-cta {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--shell-orange), var(--shell-orange-deep));
  box-shadow: 0 12px 22px -16px rgba(217, 103, 56, .72);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

body .nav details.mobile-nav { display: none; }

body .nav .hamburger-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--shell-line);
  border-radius: 13px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  background: var(--shell-paper);
  cursor: pointer;
  list-style: none;
}
body .nav .hamburger-btn::-webkit-details-marker { display: none; }
body .nav .hamburger-btn span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--shell-teal);
  transition: transform .18s ease, opacity .18s ease;
}
body .nav details[open] .hamburger-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body .nav details[open] .hamburger-btn span:nth-child(2) { opacity: 0; }
body .nav details[open] .hamburger-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body .nav .mobile-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 14px;
  width: min(320px, calc(100vw - 28px));
  padding: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--shell-line);
  border-radius: 20px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 24px 55px -24px rgba(13, 32, 34, .4);
}

body .nav .mobile-menu-panel > a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--shell-teal);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}
body .nav .mobile-menu-panel > a:hover,
body .nav .mobile-menu-panel > a:focus-visible,
body .nav .mobile-menu-panel > a[aria-current="page"] { background: rgba(245, 138, 80, .12); }
body .nav .lang-switch--mobile { margin: 7px 8px 2px; justify-self: start; }

/* Secondary, page-specific navigation ------------------------------------- */
.site-context-nav {
  position: relative;
  z-index: 20;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--shell-teal);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-context-nav::-webkit-scrollbar { display: none; }
.site-context-nav__inner {
  width: min(var(--shell-width), calc(100% - 40px));
  min-height: 42px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.site-context-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.site-context-nav a:hover,
.site-context-nav a:focus-visible { color: #fff; background: rgba(255, 255, 255, .1); }
.site-context-nav__label {
  margin-right: 7px;
  color: #f5b283;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Shared footer ----------------------------------------------------------- */
body .foot {
  min-height: 196px;
  box-sizing: border-box;
  padding: 48px 0 38px;
  color: rgba(255, 255, 255, .78);
  background: var(--shell-teal-deep);
  border: 0;
}
body .foot .inner { width: min(var(--shell-width), calc(100% - 40px)); margin: 0 auto; }
body .foot .foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  color: inherit;
  font-size: 14px;
}
body .foot .foot-row + .foot-row { margin-top: 14px; }
body .foot strong { color: #fff; }
body .foot a { color: #fff; text-decoration-thickness: 1px; text-underline-offset: 4px; }
body .foot a:hover,
body .foot a:focus-visible { color: #f5b283; }
body .foot .foot-sub { color: rgba(255, 255, 255, .54); font-size: 12px; }
body .foot .foot-social { justify-content: flex-start; margin-top: 24px; }
body .foot .social-icon { width: 42px !important; height: 42px !important; color: var(--shell-orange) !important; }

/* Portfolio-level consistency fixes -------------------------------------- */
.page--home { overflow-x: clip; }
.page--home .hero::before { max-width: min(480px, 42vw); }

.friends-page--pt {
  --bg: #f8f1e5;
  --bg-soft: #fffaf2;
  --paper: #fffdf8;
  --paper-2: #fff8ef;
  --ink: #132a2d;
  --ink-soft: #536164;
  --orange: #f58a50;
  --orange-deep: #d96738;
  --content: 1200px;
}
.friends-page--pt .page-shell { padding-top: 24px; padding-bottom: 0; }
.friends-page--pt .trust-pill { max-width: 100%; white-space: normal; text-align: center; line-height: 1.3; }
.friends-page--pt .impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.friends-page--pt .impact-card {
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(19, 42, 45, .08);
  border-radius: 26px;
  background: rgba(255, 253, 248, .78);
  box-shadow: 0 22px 44px -38px rgba(19, 42, 45, .42);
}
.friends-page--pt .impact-card:nth-child(2) { background: var(--shell-teal); color: #fff; }
.friends-page--pt .impact-card__day {
  color: var(--shell-orange-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.friends-page--pt .impact-card:nth-child(2) .impact-card__day { color: #f5b283; }
.friends-page--pt .impact-card strong { display: block; margin: 26px 0 8px; font-size: 25px; line-height: 1.1; }
.friends-page--pt .impact-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }
.friends-page--pt .impact-card:nth-child(2) p { color: rgba(255, 255, 255, .72); }
.friends-page--pt .giving-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.friends-page--pt .giving-ledger article {
  padding: 24px 22px;
  border-top: 2px solid rgba(245, 138, 80, .72);
  border-radius: 0 0 20px 20px;
  background: rgba(255, 253, 248, .64);
}
.friends-page--pt .giving-ledger strong { display: block; margin-bottom: 10px; color: var(--shell-teal); font-size: 18px; }
.friends-page--pt .giving-ledger p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

/* Events parity: the reel module is shared by both languages. */
.page--events-overview .reel-band { display: grid; gap: 18px; margin: 0 0 22px; }
.page--events-overview .reel-band .past-head { margin-bottom: 0; }
.page--events-overview .reel-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 2px 2px 12px;
  scrollbar-width: none;
}
.page--events-overview .reel-strip::-webkit-scrollbar { display: none; }
.page--events-overview .reel-item {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(19, 42, 45, .08);
  border-radius: 26px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 18px 40px -30px rgba(19, 42, 45, .28);
}
.page--events-overview .reel-shell { display: grid; height: 100%; grid-template-rows: auto 1fr; color: inherit; text-decoration: none; }
.page--events-overview .reel-shell__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: #e8dcc8; }
.page--events-overview .reel-shell__media--banner { padding: 12px; background: linear-gradient(180deg, #f6ecde, #e4d1b4); }
.page--events-overview .reel-shell__media--banner img { object-fit: contain; border-radius: 12px; }
.page--events-overview .reel-shell img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .4s ease; }
.page--events-overview .reel-shell__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(19, 42, 45, .34)); pointer-events: none; }
.page--events-overview .reel-shell:hover img,
.page--events-overview .reel-shell:focus-visible img { transform: scale(1.035); }
.page--events-overview .reel-shell:focus-visible { outline: 3px solid #e8a84a; outline-offset: 3px; }
.page--events-overview .reel-shell__body { padding: 16px 18px 19px; display: grid; align-content: start; gap: 9px; background: linear-gradient(180deg, #fffaf4, #f7eedd); }
.page--events-overview .reel-kicker { color: #b8451f; font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.page--events-overview .reel-title { color: #132a2d; font-size: 21px; font-weight: 900; line-height: 1.1; letter-spacing: -.03em; }
.page--events-overview .reel-meta { color: #536164; font-size: 13px; line-height: 1.45; }
.page--events-overview .reel-play { position: absolute; left: 50%; top: 50%; z-index: 2; width: 58px; height: 58px; margin: -29px; display: grid; place-items: center; border-radius: 999px; background: rgba(255, 250, 241, .94); box-shadow: 0 14px 28px -18px rgba(19, 42, 45, .55); }
.page--events-overview .reel-play::before { content: ""; margin-left: 4px; border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #b8451f; }
.page--events-overview .reel-viewer { width: min(440px, calc(100vw - 28px)); max-width: 100%; padding: 0; overflow: visible; border: 0; background: transparent; }
.page--events-overview .reel-viewer::backdrop { background: rgba(11, 22, 24, .76); backdrop-filter: blur(6px); }
.page--events-overview .reel-viewer__panel { padding: 14px; border: 1px solid rgba(19, 42, 45, .12); border-radius: 28px; background: #f8f1e5; box-shadow: 0 30px 80px -38px rgba(11, 22, 24, .72); }
.page--events-overview .reel-viewer__top { margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; }
.page--events-overview .reel-viewer__label { color: #132a2d; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.page--events-overview .reel-viewer__close { width: 42px; height: 42px; border: 1px solid rgba(19, 42, 45, .12); border-radius: 999px; background: #fff; color: #132a2d; font-size: 25px; cursor: pointer; }
.page--events-overview .reel-viewer__frame { min-height: min(640px, 72vh); overflow: hidden; border-radius: 20px; background: #fff; }
.page--events-overview .reel-viewer__frame iframe { width: 100%; height: min(76vh, 730px); min-height: min(640px, 72vh); display: block; border: 0; }
.page--events-overview .reel-viewer__actions { margin-top: 12px; display: flex; justify-content: flex-end; }
.page--events-overview .reel-viewer__link { min-height: 42px; padding: 0 16px; display: inline-flex; align-items: center; border-radius: 999px; background: #132a2d; color: #fff; font-weight: 800; text-decoration: none; }

/* Growing event archive: a single-row, accessible filmstrip on every viewport. */
.page--events-overview .archive-head {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
}
.page--events-overview .archive-head .past-head-copy { max-width: 72ch; }
.page--events-overview .archive-nav {
  --archive-progress: 0;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: end;
  gap: 10px 18px;
  padding-bottom: 3px;
}
.page--events-overview .archive-interaction {
  grid-column: 1 / -1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #536164;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .025em;
}
.page--events-overview .archive-interaction > span[aria-hidden="true"] { color: #f4824c; font-size: 17px; }
.page--events-overview .archive-interaction__swipe { display: none; }
.page--events-overview .archive-progress {
  min-width: 142px;
  display: grid;
  grid-template-columns: 2ch minmax(58px, 84px) 2ch;
  align-items: center;
  gap: 10px;
  color: rgba(19, 42, 45, .48);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.page--events-overview .archive-progress strong { color: #132a2d; font-size: 14px; }
.page--events-overview .archive-progress__rail {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(19, 42, 45, .14);
}
.page--events-overview .archive-progress__rail::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: max(10%, calc(var(--archive-progress) * 100%));
  border-radius: inherit;
  background: #f4824c;
  transition: width .35s ease;
}
.page--events-overview .archive-nav__buttons { display: flex; gap: 9px; }
.page--events-overview .archive-arrow {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(19, 42, 45, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  color: #132a2d;
  box-shadow: 0 13px 28px -24px rgba(19, 42, 45, .45);
  cursor: pointer;
  transition: transform .18s ease, color .18s ease, background .18s ease, opacity .18s ease;
}
.page--events-overview .archive-arrow:hover,
.page--events-overview .archive-arrow:focus-visible { transform: translateY(-2px); background: #132a2d; color: #fffaf1; }
.page--events-overview .archive-arrow[data-archive-next] { border-color: #132a2d; background: #132a2d; color: #fffaf1; box-shadow: 0 15px 30px -20px rgba(19, 42, 45, .72); }
.page--events-overview .archive-arrow[data-archive-next]:hover,
.page--events-overview .archive-arrow[data-archive-next]:focus-visible { background: #f4824c; border-color: #f4824c; }
.page--events-overview .archive-arrow:focus-visible { outline: 3px solid rgba(244, 130, 76, .42); outline-offset: 3px; }
.page--events-overview .past-carousel,
.page--events-overview .event-grid.past-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(410px, 40vw, 470px);
  grid-template-columns: none;
  align-items: stretch;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px calc(100% - clamp(410px, 40vw, 470px)) 22px 4px;
  cursor: grab;
}
.page--events-overview .past-carousel:active { cursor: grabbing; }
.page--events-overview .past-carousel::-webkit-scrollbar { display: none; }
.page--events-overview .past-carousel .event-card,
.page--events-overview .past-carousel .past-card {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  height: auto;
}
.page--events-overview .past-carousel[data-dragging="true"] { scroll-snap-type: none; user-select: none; }
.page--events-overview .past-carousel[data-dragging="true"] a { pointer-events: none; }

/* Events press coverage ---------------------------------------------------- */
.page--events-overview .press-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: clamp(52px, 7vw, 84px) 0;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 4%, rgba(245, 138, 80, .2), transparent 34%),
    linear-gradient(135deg, #0d2022 0%, #17383a 100%);
  color: #fffaf1;
  box-shadow: 0 32px 80px -48px rgba(13, 32, 34, .75);
}
.page--events-overview .press-band::before {
  content: "PRESS";
  position: absolute;
  z-index: -1;
  top: -34px;
  right: -8px;
  color: rgba(255, 255, 255, .025);
  font-size: clamp(100px, 17vw, 230px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.page--events-overview .press-band__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: clamp(30px, 5vw, 54px);
}
.page--events-overview .press-band .eyebrow { margin-bottom: 13px; color: #f6a276; }
.page--events-overview .press-band h2 {
  max-width: 650px;
  margin: 0;
  color: #fffaf1;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
}
.page--events-overview .press-band h2 em { color: #f6a276; }
.page--events-overview .press-band__intro { display: grid; gap: 16px; }
.page--events-overview .press-band__intro > p:first-child {
  margin: 0;
  color: rgba(255, 250, 241, .76);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}
.page--events-overview .press-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.page--events-overview .press-card { min-width: 0; }
.page--events-overview .press-card > a {
  min-height: 100%;
  padding: clamp(22px, 2.6vw, 32px);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 23px;
  background: rgba(255, 255, 255, .065);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 24px 42px -38px rgba(0, 0, 0, .8);
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.page--events-overview .press-card > a:hover,
.page--events-overview .press-card > a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(246, 162, 118, .55);
  background: rgba(255, 255, 255, .1);
}
.page--events-overview .press-card > a:focus-visible { outline: 3px solid #f6a276; outline-offset: 4px; }
.page--events-overview .press-card__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #f6a276; }
.page--events-overview .press-card__publication { color: #fffaf1; font-size: clamp(18px, 1.7vw, 23px); font-weight: 950; letter-spacing: -.035em; }
.page--events-overview .press-card__meta { color: rgba(255, 250, 241, .48); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.page--events-overview .press-card h3 { margin: 0; color: #fffaf1; font-size: clamp(20px, 1.8vw, 25px); line-height: 1.15; letter-spacing: -.035em; }
.page--events-overview .press-card p { margin: 0; color: rgba(255, 250, 241, .65); font-size: 14px; line-height: 1.55; }
.page--events-overview .press-card__action { align-self: end; padding-top: 8px; color: #f6a276; font-size: 12px; font-weight: 950; letter-spacing: .04em; }

@media (max-width: 980px) {
  body .nav .nav-inner { width: min(var(--shell-width), calc(100% - 28px)); gap: 12px; }
  body .nav .nav-logo { flex-basis: auto; min-width: 0; }
  body .nav .nav-links,
  body .nav > .nav-inner > .lang-switch,
  body .nav > .nav-inner > .btn.btn-sm,
  body .nav > .nav-inner > .nav-cta { display: none; }
  body .nav details.mobile-nav { display: block; position: relative; margin-left: auto; }
  .site-context-nav__inner { width: max-content; min-width: 100%; justify-content: flex-start; padding: 0 14px; }
  .friends-page--pt .impact-grid { grid-template-columns: 1fr; }
  .friends-page--pt .giving-ledger { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page--events-overview .reel-strip { grid-template-columns: repeat(2, minmax(260px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
  .page--events-overview .reel-item { scroll-snap-align: start; }
  .page--events-overview .press-band__head { grid-template-columns: 1fr; align-items: start; }
  .page--events-overview .press-grid { grid-template-columns: 1fr; }
  .page--events-overview .archive-head { grid-template-columns: 1fr; align-items: start; gap: 20px; }
  .page--events-overview .archive-nav { width: 100%; grid-template-columns: 1fr auto; justify-content: stretch; }
  .page--events-overview .archive-interaction { justify-self: start; }
  .page--events-overview .past-carousel,
  .page--events-overview .event-grid.past-carousel {
    grid-auto-columns: clamp(300px, 82vw, 620px);
    padding-right: calc(100% - clamp(300px, 82vw, 620px));
  }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 76px; }
  body .nav { min-height: 62px; height: 62px; }
  body .nav .nav-inner { min-height: 0; height: 61px; }
  body .nav .nav-inner { width: calc(100% - 24px); }
  body .nav .nav-logo { font-size: 13px; }
  body .nav .nav-logo img { width: 30px; height: 30px; }
  .site-context-nav__label { display: none; }
  body .foot { min-height: 0; padding: 38px 0 32px; }
  body .foot .inner { width: calc(100% - 32px); }
  body .foot .foot-row { align-items: flex-start; flex-direction: column; gap: 8px; }
  body .foot .foot-row + .foot-row { margin-top: 18px; }
  .friends-page--pt .page-shell { padding-top: 12px; }
  .page--events-overview .reel-strip { width: calc(100vw - 16px); grid-template-columns: repeat(4, minmax(278px, 82vw)); gap: 12px; margin-left: -2px; }
  .page--events-overview .press-band { width: calc(100% + 8px); margin-left: -4px; padding: 28px 20px; border-radius: 26px; }
  .page--events-overview .press-card > a { padding: 22px; }
  .page--events-overview .archive-nav { gap: 12px; }
  .page--events-overview .archive-interaction { font-size: 11px; }
  .page--events-overview .archive-progress { min-width: 116px; grid-template-columns: 2ch minmax(44px, 64px) 2ch; gap: 7px; }
  .page--events-overview .archive-arrow { width: 44px; height: 44px; }
  .page--events-overview .past-carousel,
  .page--events-overview .event-grid.past-carousel {
    grid-auto-columns: clamp(272px, 86vw, 360px);
    gap: 14px;
    padding-right: calc(100% - clamp(272px, 86vw, 360px));
  }
  .friends-page--pt .giving-ledger { grid-template-columns: 1fr; }
}

@media (hover: none), (pointer: coarse) {
  .page--events-overview .archive-interaction__drag { display: none; }
  .page--events-overview .archive-interaction__swipe { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  body .nav .nav-links a::after,
  body .nav .hamburger-btn span,
  .page--events-overview .archive-progress__rail::after,
  .page--events-overview .archive-arrow { transition: none; }
}

/* Shared navigation — one calm header, with the full site map behind Explore. */
html.psk-global-nav-active { scroll-padding-top: 94px; }
html.psk-global-nav-active body { padding-top: 76px; }
body.psk-menu-open { overflow: hidden !important; }
.psk-global-nav-active .site-context-nav { display: none !important; }

.psk-global-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 76px;
  border-bottom: 1px solid rgba(19, 42, 45, .1);
  background: rgba(255, 250, 241, .9);
  color: #132a2d;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  transition: box-shadow .25s ease, background-color .25s ease, opacity .25s ease;
}
.psk-global-header.is-scrolled {
  background: rgba(255, 250, 241, .97);
  box-shadow: 0 16px 35px -31px rgba(19, 42, 45, .72);
}
.psk-global-header.is-menu-open { opacity: 0; pointer-events: none; }
.psk-global-header__bar {
  width: min(1220px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}
.psk-global-header__side { display: flex; align-items: center; gap: 30px; min-width: 0; }
.psk-global-header__side--right { justify-content: flex-end; }
.psk-menu-toggle {
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
}
.psk-menu-toggle__icon { width: 22px; height: 12px; display: grid; align-content: space-between; }
.psk-menu-toggle__icon i { width: 100%; height: 2px; display: block; border-radius: 2px; background: currentColor; transition: width .2s ease; }
.psk-menu-toggle__icon i:last-child { width: 68%; }
.psk-menu-toggle:hover .psk-menu-toggle__icon i:last-child { width: 100%; }
.psk-header-link {
  position: relative;
  padding: 8px 0;
  color: inherit;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}
.psk-header-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 2px;
  background: #f47d4c;
  transition: right .22s ease;
}
.psk-header-link:hover::after,
.psk-header-link:focus-visible::after,
.psk-header-link[aria-current="page"]::after { right: 0; }
.psk-global-brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -.02em;
  text-decoration: none;
}
.psk-global-brand img { width: 34px; height: 34px; display: block; border-radius: 8px; object-fit: cover; }
.psk-global-language {
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(19, 42, 45, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  font-size: 10px;
  font-weight: 950;
}
.psk-global-language a,
.psk-global-language span { min-width: 28px; height: 28px; display: grid; place-items: center; border-radius: 999px; color: inherit; text-decoration: none; }
.psk-global-language [aria-current="true"] { background: #132a2d; color: #fffaf1; }
.psk-header-support {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #132a2d;
  color: #fffaf1;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px -18px rgba(19, 42, 45, .85);
  transition: transform .2s ease, background-color .2s ease;
}
.psk-header-support:hover,
.psk-header-support:focus-visible { transform: translateY(-1px); background: #f47d4c; }

.psk-global-menu[hidden] { display: none !important; }
.psk-global-menu { position: fixed; inset: 0; z-index: 140; display: grid; place-items: center; }
.psk-global-menu__backdrop { position: absolute; inset: 0; border: 0; background: rgba(8, 23, 24, .84); backdrop-filter: blur(10px); cursor: default; opacity: 0; transition: opacity .32s ease; }
.psk-global-menu__dialog {
  position: relative;
  width: min(1420px, calc(100vw - 36px));
  height: calc(100dvh - 36px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(340px, .72fr);
  border-radius: 28px;
  background: #fffaf1;
  color: #132a2d;
  box-shadow: 0 38px 100px -34px rgba(0, 0, 0, .65);
  opacity: 0;
  transform: translateY(18px) scale(.985);
  transition: opacity .32s ease, transform .32s cubic-bezier(.2,.8,.2,1);
}
.psk-global-menu.is-open .psk-global-menu__backdrop,
.psk-global-menu.is-open .psk-global-menu__dialog { opacity: 1; }
.psk-global-menu.is-open .psk-global-menu__dialog { transform: translateY(0) scale(1); }
.psk-global-menu__content { min-width: 0; padding: clamp(28px, 4vw, 62px); display: grid; grid-template-rows: auto auto 1fr auto; gap: clamp(22px, 3.5vh, 42px); overflow-y: auto; }
.psk-global-menu__topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.psk-global-menu__topline p,
.psk-global-menu__context > p { margin: 0; color: #9b3d20; font-size: 10px; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.psk-global-menu__close {
  width: 50px;
  height: 50px;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid rgba(19, 42, 45, .15);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease;
}
.psk-global-menu__close span::before,
.psk-global-menu__close span::after { content: ""; position: absolute; left: 15px; top: 24px; width: 19px; height: 2px; background: #132a2d; transform: rotate(45deg); }
.psk-global-menu__close span::after { transform: rotate(-45deg); }
.psk-global-menu__close:hover { transform: rotate(8deg); background: #f5e7d5; }
.psk-global-menu__primary { display: grid; align-content: start; }
.psk-global-menu__primary a {
  min-height: clamp(58px, 9vh, 90px);
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 28px);
  border-bottom: 1px solid rgba(19, 42, 45, .12);
  color: #132a2d;
  font-size: clamp(34px, 4.6vw, 70px);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.055em;
  text-decoration: none;
  transition: color .2s ease, padding-left .22s ease;
}
.psk-global-menu__primary a:first-child { border-top: 1px solid rgba(19, 42, 45, .12); }
.psk-global-menu__primary a > span { min-width: 22px; color: #f47d4c; font-size: 10px; letter-spacing: .08em; }
.psk-global-menu__primary a:hover,
.psk-global-menu__primary a:focus-visible,
.psk-global-menu__primary a[aria-current="page"] { color: #f47d4c; padding-left: 8px; }
.psk-global-menu__context { align-self: end; display: grid; gap: 12px; }
.psk-global-menu__context nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
.psk-global-menu__context a { min-height: 39px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid rgba(19,42,45,.1); color: #3e5557; font-size: 13px; font-weight: 800; text-decoration: none; }
.psk-global-menu__context a span { color: #f47d4c; transition: transform .2s ease; }
.psk-global-menu__context a:hover span { transform: translate(2px,-2px); }
.psk-global-menu__statement {
  width: min(550px, 100%);
  margin: 0;
  align-self: end;
  color: #3e5557;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.025em;
}
.psk-global-menu__foot { padding-top: 2px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.psk-global-menu__foot > p { max-width: 310px; margin: 0; color: #536164; font-size: 12px; line-height: 1.45; }
.psk-global-menu__actions { display: flex; align-items: center; gap: 10px; }
.psk-menu-language,
.psk-menu-support { min-height: 40px; padding: 0 15px; display: inline-flex; align-items: center; border-radius: 999px; color: #132a2d; font-size: 11px; font-weight: 900; text-decoration: none; }
.psk-menu-language { border: 1px solid rgba(19,42,45,.14); }
.psk-menu-support { background: #f47d4c; color: #fff; }
.psk-global-menu__visual { position: relative; min-width: 0; height: 100%; margin: 0; overflow: hidden; background: #173638; }
.psk-global-menu__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,27,28,.05), rgba(9,27,28,.72)); }
.psk-global-menu__visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.psk-global-menu__visual figcaption { position: absolute; z-index: 1; left: 32px; right: 32px; bottom: 31px; display: grid; gap: 5px; color: #fff; }
.psk-global-menu__visual figcaption span { font-size: 22px; font-weight: 950; letter-spacing: -.03em; }
.psk-global-menu__visual figcaption small { font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.psk-global-header a:focus-visible,
.psk-global-header button:focus-visible,
.psk-global-menu a:focus-visible,
.psk-global-menu button:focus-visible { outline: 3px solid #e8a84a; outline-offset: 3px; }

/* Vine & Fire keeps the shared structure in the event's vineyard palette. */
.vf-body .psk-global-header,
.vf-body .psk-global-header.is-scrolled {
  border-bottom-color: rgba(201, 165, 103, .2);
  background: rgba(8, 20, 13, .96);
  color: #f4ede1;
  box-shadow: 0 16px 35px -30px rgba(0, 0, 0, .85);
}
.vf-body .psk-header-link::after { background: #c9a567; }
.vf-body .psk-global-language {
  border-color: rgba(201, 165, 103, .28);
  background: rgba(244, 237, 225, .07);
}
.vf-body .psk-global-language [aria-current="true"] {
  background: #c9a567;
  color: #08140d;
}
.vf-body .psk-header-support {
  background: #c9a567;
  color: #08140d;
  box-shadow: 0 12px 24px -18px rgba(0, 0, 0, .9);
}
.vf-body .psk-header-support:hover,
.vf-body .psk-header-support:focus-visible { background: #e0bd7a; }
.vf-body .psk-global-brand img { box-shadow: 0 0 0 1px rgba(201, 165, 103, .3); }

@media (max-width: 1040px) {
  .psk-global-header__side { gap: 18px; }
  .psk-header-link { display: none; }
  .psk-global-menu__dialog { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); }
}

@media (max-width: 760px) {
  html.psk-global-nav-active { scroll-padding-top: 78px; }
  html.psk-global-nav-active body { padding-top: 64px; }
  .psk-global-header { height: 64px; }
  .psk-global-header__bar { width: calc(100% - 28px); gap: 8px; }
  .psk-global-header__side { gap: 8px; }
  .psk-menu-toggle > span:last-child,
  .psk-header-support { display: none; }
  .psk-menu-toggle { width: 42px; justify-content: flex-start; }
  .psk-global-brand { gap: 7px; font-size: 13px; }
  .psk-global-brand img { width: 30px; height: 30px; }
  .psk-global-language { padding: 2px; }
  .psk-global-language a,
  .psk-global-language span { min-width: 25px; height: 25px; }
  .psk-global-menu { display: block; }
  .psk-global-menu__backdrop,
  .psk-global-menu__visual { display: none; }
  .psk-global-menu__dialog { width: 100%; height: 100dvh; grid-template-columns: 1fr; border-radius: 0; transform: translateY(12px); }
  .psk-global-menu__content { padding: 22px 22px max(24px, env(safe-area-inset-bottom)); gap: clamp(18px, 3.4vh, 30px); }
  .psk-global-menu__close { width: 44px; height: 44px; }
  .psk-global-menu__close span::before,
  .psk-global-menu__close span::after { left: 13px; top: 21px; }
  .psk-global-menu__primary a { min-height: clamp(50px, 8.5vh, 68px); font-size: clamp(32px, 12vw, 48px); }
  .psk-global-menu__context nav { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 14px; }
  .psk-global-menu__context a { font-size: 12px; }
  .psk-global-menu__statement { align-self: center; font-size: 17px; }
  .psk-global-menu__foot { align-items: flex-start; flex-direction: column; gap: 14px; }
  .psk-global-menu__foot > p { display: none; }
  .psk-global-menu__actions { width: 100%; }
  .psk-menu-language,
  .psk-menu-support { justify-content: center; }
  .psk-menu-support { flex: 1; }
}

@media (max-width: 400px) {
  .psk-global-brand span { max-width: 120px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
  .psk-global-menu__content { padding-inline: 18px; }
  .psk-global-menu__context nav { grid-template-columns: 1fr; }
  .psk-global-menu__context a:nth-child(n+5) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .psk-global-header *,
  .psk-global-menu * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
