@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --hub-color-primary: #37474F;
  --hub-color-secondary: #546E7A;
  --hub-color-accent: #00BCD4;
  --hub-color-background: #ECEFF1;
  --hub-color-surface: #FFFFFF;
  --hub-color-text: #263238;
  --hub-color-text-light: #607D8B;
  --hub-color-border: #CFD8DC;
  --hub-hero-overlay: linear-gradient(165deg, rgba(55, 71, 79, 0.9), rgba(84, 110, 122, 0.55));
  --hub-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --hub-radius-card: 16px;
  --hub-radius-image: 12px;
  --hub-radius-pill: 50px;
  --hub-max-width: 1220px;
  --hub-nav-height: 82px;
  --hub-section-space: 80px;
  --hub-transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--hub-color-text);
  background:
    radial-gradient(circle at top right, rgba(0, 188, 212, 0.08), transparent 32%),
    linear-gradient(180deg, #f6f8f9 0%, var(--hub-color-background) 100%);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--hub-radius-image);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--hub-color-primary);
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hub-shell {
  width: min(calc(100% - 32px), var(--hub-max-width));
  margin: 0 auto;
}

.hub-page {
  overflow: clip;
}

.hub-page section,
.hub-page footer {
  position: relative;
}

.hub-page section {
  padding: var(--hub-section-space) 0;
}

.hub-page section:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.78);
}

.hub-page section:nth-of-type(odd) {
  background: transparent;
}

.hub-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--hub-radius-pill);
  background: rgba(0, 188, 212, 0.1);
  color: var(--hub-color-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hub-color-accent);
}

.hub-lead {
  font-size: 1.06rem;
  color: var(--hub-color-text-light);
}

.hub-section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  max-width: 720px;
}

.hub-section-head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.hub-panel,
.hub-card,
.hub-story-card,
.hub-news-card,
.hub-program-card,
.hub-event-card,
.hub-quote-card,
.hub-post-card,
.hub-action-card,
.hub-spotlight-card,
.hub-logo-cloud,
.hub-newsletter-shell,
.hub-team-card,
.hub-contact-panel {
  background: var(--hub-color-surface);
  border: 1px solid rgba(207, 216, 220, 0.8);
  border-radius: var(--hub-radius-card);
  box-shadow: var(--hub-shadow-soft);
}

.hub-card,
.hub-story-card,
.hub-news-card,
.hub-program-card,
.hub-event-card,
.hub-quote-card,
.hub-post-card,
.hub-action-card,
.hub-team-card,
.hub-contact-panel {
  transition:
    transform var(--hub-transition),
    box-shadow var(--hub-transition),
    border-color var(--hub-transition);
}

.hub-card:hover,
.hub-story-card:hover,
.hub-news-card:hover,
.hub-program-card:hover,
.hub-event-card:hover,
.hub-quote-card:hover,
.hub-post-card:hover,
.hub-action-card:hover,
.hub-team-card:hover,
.hub-contact-panel:hover {
  transform: scale(1.02);
  border-color: rgba(0, 188, 212, 0.38);
  box-shadow: 0 18px 34px rgba(55, 71, 79, 0.12);
}

.hub-button,
.hub-button-secondary,
.hub-button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: var(--hub-radius-pill);
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform var(--hub-transition),
    background-color var(--hub-transition),
    color var(--hub-transition),
    border-color var(--hub-transition),
    box-shadow var(--hub-transition);
}

.hub-button {
  background: var(--hub-color-accent);
  color: var(--hub-color-surface);
  box-shadow: 0 14px 26px rgba(0, 188, 212, 0.24);
}

.hub-button-secondary {
  background: var(--hub-color-primary);
  color: var(--hub-color-surface);
}

.hub-button-ghost {
  background: rgba(255, 255, 255, 0.18);
  color: var(--hub-color-primary);
  border-color: rgba(84, 110, 122, 0.2);
  backdrop-filter: blur(10px);
}

.hub-button:hover,
.hub-button-secondary:hover,
.hub-button-ghost:hover {
  transform: translateY(-2px) scale(1.02);
}

.hub-page-link {
  color: var(--hub-color-accent);
  font-weight: 600;
}

.hub-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.hub-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--hub-nav-height);
  padding: 14px 18px 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(236, 239, 241, 0.26);
  box-shadow: 0 8px 24px rgba(38, 50, 56, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background-color var(--hub-transition),
    border-color var(--hub-transition),
    box-shadow var(--hub-transition),
    transform var(--hub-transition);
}

.hub-nav.is-solid {
  background: rgba(55, 71, 79, 0.94);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 34px rgba(38, 50, 56, 0.22);
}

.hub-nav.is-solid .hub-brand-wordmark,
.hub-nav.is-solid .hub-nav-link,
.hub-nav.is-solid .hub-lang-button,
.hub-nav.is-solid .hub-nav-toggle {
  color: var(--hub-color-surface);
}

.hub-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hub-brand-badge {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 188, 212, 0.95), rgba(55, 71, 79, 0.95)),
    var(--hub-color-primary);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hub-brand-badge::before,
.hub-brand-badge::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.hub-brand-badge::before {
  inset: 11px 24px 11px 11px;
}

.hub-brand-badge::after {
  inset: 20px 10px 20px 20px;
}

.hub-brand-wordmark {
  display: grid;
  gap: 2px;
  color: var(--hub-color-primary);
}

.hub-brand-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.hub-brand-subtitle {
  color: var(--hub-color-text-light);
  font-size: 0.8rem;
}

.hub-nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-nav-link {
  padding: 10px 16px;
  border-radius: var(--hub-radius-pill);
  color: var(--hub-color-primary);
  font-weight: 600;
  transition: background-color var(--hub-transition), color var(--hub-transition);
}

.hub-nav-link:hover,
.hub-nav-link.is-active {
  background: rgba(0, 188, 212, 0.12);
  color: var(--hub-color-accent);
}

.hub-nav-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hub-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: var(--hub-radius-pill);
  background: rgba(255, 255, 255, 0.5);
}

.hub-lang-button {
  min-width: 54px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--hub-radius-pill);
  background: transparent;
  color: var(--hub-color-primary);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--hub-transition), color var(--hub-transition);
}

.hub-lang-button.is-current {
  background: var(--hub-color-accent);
  color: var(--hub-color-surface);
}

.hub-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--hub-color-primary);
  cursor: pointer;
}

.hub-nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--hub-transition), opacity var(--hub-transition);
}

.hub-nav-toggle[aria-expanded="true"] .hub-nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hub-nav-toggle[aria-expanded="true"] .hub-nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.hub-nav-toggle[aria-expanded="true"] .hub-nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hub-hero {
  padding-top: 32px;
}

.hub-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: stretch;
}

.hub-hero-media {
  position: relative;
  min-height: 640px;
  border-radius: 34px;
  overflow: hidden;
  background:
    var(--hub-hero-overlay),
    url('images/hero-1.jpg') center/cover no-repeat;
  box-shadow: 0 18px 46px rgba(38, 50, 56, 0.18);
}

.hub-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 0%, rgba(236, 239, 241, 0.06) 45%, transparent 100%);
}

.hub-hero-media-copy {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(76%, 380px);
  padding: 22px;
  border-radius: 24px;
  color: var(--hub-color-surface);
  background: rgba(38, 50, 56, 0.34);
  backdrop-filter: blur(14px);
}

.hub-hero-media-copy h2 {
  margin-bottom: 12px;
  color: var(--hub-color-surface);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.hub-hero-collage {
  position: absolute;
  inset: 24px;
  pointer-events: none;
}

.hub-hero-tile {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  box-shadow: 0 18px 32px rgba(38, 50, 56, 0.2);
}

.hub-hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.hub-hero-tile[data-hub-tile="1"] {
  top: 24px;
  right: -18px;
  width: 34%;
  height: 32%;
  transform: rotate(6deg);
}

.hub-hero-tile[data-hub-tile="2"] {
  right: 12%;
  bottom: 22%;
  width: 26%;
  height: 22%;
  transform: rotate(-8deg);
}

.hub-hero-tile[data-hub-tile="3"] {
  left: -12px;
  top: 14%;
  width: 24%;
  height: 26%;
  transform: rotate(-9deg);
}

.hub-hero-content {
  display: flex;
  align-items: center;
}

.hub-hero-stack {
  position: relative;
  display: grid;
  gap: 24px;
  width: 100%;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(236, 239, 241, 0.84)),
    url('images/scene-2.jpg') bottom right / 46% no-repeat;
  box-shadow: var(--hub-shadow-soft);
}

.hub-hero-stack h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.3rem);
}

.hub-hero-stack p {
  max-width: 560px;
  color: var(--hub-color-text-light);
  font-size: 1.08rem;
}

.hub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hub-hero-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hub-hero-ribbon-item {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(55, 71, 79, 0.06);
}

.hub-hero-ribbon-item strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  color: var(--hub-color-primary);
}

.hub-story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  overflow: hidden;
}

.hub-story-image {
  min-height: 380px;
}

.hub-story-image img,
.hub-news-card img,
.hub-post-card img,
.hub-spotlight-photo img,
.hub-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-story-body {
  display: grid;
  gap: 18px;
  padding: 34px;
  align-content: center;
}

.hub-badge {
  display: inline-flex;
  width: fit-content;
  padding: 9px 14px;
  border-radius: var(--hub-radius-pill);
  background: rgba(0, 188, 212, 0.1);
  color: var(--hub-color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hub-news-grid,
.hub-post-grid,
.hub-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hub-news-grid.hub-news-grid-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hub-news-card,
.hub-post-card {
  overflow: hidden;
}

.hub-news-thumb,
.hub-post-thumb {
  height: 240px;
}

.hub-news-body,
.hub-post-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.hub-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--hub-color-text-light);
  font-size: 0.9rem;
}

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

.hub-program-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  overflow: hidden;
}

.hub-program-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 110px;
  height: 110px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0, 188, 212, 0.12), rgba(55, 71, 79, 0.04));
}

.hub-program-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: rgba(55, 71, 79, 0.08);
  color: var(--hub-color-accent);
  font-size: 1.4rem;
}

.hub-program-photo {
  height: 160px;
  overflow: hidden;
  border-radius: var(--hub-radius-image);
}

.hub-program-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-event-grid,
.hub-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hub-event-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.hub-event-date {
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border-radius: 26px;
  background: linear-gradient(145deg, var(--hub-color-primary), var(--hub-color-secondary));
  color: var(--hub-color-surface);
  text-align: center;
}

.hub-event-date strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hub-event-date span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hub-event-meta {
  display: grid;
  gap: 6px;
  color: var(--hub-color-text-light);
}

.hub-spotlight-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.hub-spotlight-photo {
  min-height: 360px;
}

.hub-spotlight-body {
  display: grid;
  gap: 18px;
  padding: 34px;
  align-content: center;
}

.hub-spotlight-quote {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--hub-color-primary);
}

.hub-quote-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(160deg, rgba(0, 188, 212, 0.1), rgba(255, 255, 255, 0.96)),
    var(--hub-color-surface);
}

.hub-quote-card blockquote {
  margin: 0;
  font-size: 1.03rem;
  color: var(--hub-color-primary);
}

.hub-quote-source {
  color: var(--hub-color-text-light);
  font-size: 0.92rem;
}

.hub-logo-cloud {
  padding: 30px;
}

.hub-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.hub-logo-item {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(84, 110, 122, 0.28);
  color: var(--hub-color-secondary);
  background: rgba(236, 239, 241, 0.65);
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.hub-gallery-grid {
  column-count: 4;
  column-gap: 18px;
}

.hub-gallery-card {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--hub-shadow-soft);
}

.hub-gallery-card img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform var(--hub-transition);
}

.hub-gallery-card:hover img {
  transform: scale(1.04);
}

.hub-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(38, 50, 56, 0.28) 100%);
}

.hub-action-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.hub-action-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(0, 188, 212, 0.1);
  color: var(--hub-color-accent);
  font-size: 1.4rem;
}

.hub-newsletter-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 34px;
  background:
    linear-gradient(140deg, rgba(55, 71, 79, 0.95), rgba(84, 110, 122, 0.92)),
    url('images/community-4.jpg') center/cover no-repeat;
  color: var(--hub-color-surface);
}

.hub-newsletter-shell h2,
.hub-newsletter-shell p {
  color: var(--hub-color-surface);
}

.hub-newsletter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.hub-newsletter-form .hub-field-span {
  grid-column: 1 / -1;
}

.hub-input,
.hub-select,
.hub-textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--hub-color-surface);
  backdrop-filter: blur(8px);
}

.hub-input::placeholder,
.hub-textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.hub-textarea {
  min-height: 148px;
  padding: 16px 18px;
  resize: vertical;
}

.hub-about-hero,
.hub-contact-hero,
.hub-programs-hero,
.hub-team-hero {
  padding-top: 24px;
}

.hub-page-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(236, 239, 241, 0.84)),
    var(--hub-color-surface);
  box-shadow: var(--hub-shadow-soft);
}

.hub-page-banner-art {
  min-height: 320px;
  border-radius: 28px;
  background:
    var(--hub-hero-overlay),
    url('images/scene-1.jpg') center/cover no-repeat;
}

.hub-about-grid,
.hub-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hub-about-panel {
  padding: 28px;
}

.hub-scene-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hub-scene-frame {
  min-height: 220px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--hub-shadow-soft);
}

.hub-scene-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.hub-team-card {
  overflow: hidden;
}

.hub-team-photo {
  aspect-ratio: 4 / 4.4;
}

.hub-team-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.hub-team-role {
  color: var(--hub-color-accent);
  font-weight: 600;
}

.hub-programs-grid-wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hub-program-feature {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
}

.hub-program-feature-art {
  min-height: 100%;
}

.hub-program-feature-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-program-feature-body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.hub-contact-panel {
  padding: 28px;
}

.hub-contact-list {
  display: grid;
  gap: 14px;
}

.hub-contact-item {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hub-color-border);
}

.hub-contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hub-contact-map {
  min-height: 100%;
  border-radius: 22px;
  background:
    var(--hub-hero-overlay),
    url('images/scene-3.jpg') center/cover no-repeat;
}

.hub-native-only {
  display: none;
}

html[data-lang="ga"] .hub-native-only {
  display: initial;
}

html[data-lang="ga"] .hub-english-only {
  display: none;
}

html[data-lang="en"] .hub-english-only {
  display: initial;
}

html[data-lang="en"] .hub-native-only {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hub-site-footer {
  padding: 40px 0 56px;
  background: var(--hub-color-primary);
  color: rgba(255, 255, 255, 0.82);
}

.hub-footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 28px;
}

.hub-footer-shell h3 {
  margin-bottom: 14px;
  color: var(--hub-color-surface);
  font-size: 1.05rem;
}

.hub-footer-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.hub-footer-link {
  color: rgba(255, 255, 255, 0.82);
}

.hub-footer-link:hover {
  color: var(--hub-color-accent);
}

@media (max-width: 1100px) {
  .hub-hero-shell,
  .hub-story-card,
  .hub-page-banner,
  .hub-newsletter-shell,
  .hub-spotlight-card,
  .hub-program-feature {
    grid-template-columns: 1fr;
  }

  .hub-program-grid,
  .hub-event-grid,
  .hub-quote-grid,
  .hub-news-grid,
  .hub-post-grid,
  .hub-action-grid,
  .hub-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hub-gallery-grid {
    column-count: 3;
  }

  .hub-about-grid,
  .hub-contact-grid,
  .hub-programs-grid-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hub-shell {
    width: min(calc(100% - 24px), var(--hub-max-width));
  }

  .hub-site-header {
    padding: 12px 0;
  }

  .hub-nav {
    position: relative;
    flex-wrap: wrap;
    padding: 14px;
  }

  .hub-nav-toggle {
    display: inline-block;
  }

  .hub-nav-menu,
  .hub-nav-tools {
    width: 100%;
  }

  .hub-nav-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .hub-nav-tools {
    display: none;
    justify-content: space-between;
    padding-top: 8px;
  }

  .hub-nav.is-open .hub-nav-menu,
  .hub-nav.is-open .hub-nav-tools {
    display: flex;
  }

  .hub-nav-link,
  .hub-button-secondary.hub-nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hub-hero-media {
    min-height: 520px;
  }

  .hub-hero-stack {
    padding: 26px;
    background-size: 62%;
  }

  .hub-hero-ribbon,
  .hub-news-grid.hub-news-grid-pair,
  .hub-program-grid,
  .hub-event-grid,
  .hub-quote-grid,
  .hub-news-grid,
  .hub-post-grid,
  .hub-action-grid,
  .hub-team-grid,
  .hub-scene-strip,
  .hub-logo-grid,
  .hub-newsletter-form,
  .hub-footer-shell {
    grid-template-columns: 1fr;
  }

  .hub-gallery-grid {
    column-count: 2;
  }

  .hub-spotlight-photo,
  .hub-story-image,
  .hub-page-banner-art {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .hub-page section {
    padding: 64px 0;
  }

  .hub-hero {
    padding-top: 18px;
  }

  .hub-hero-media {
    min-height: 440px;
    border-radius: 26px;
  }

  .hub-hero-media-copy,
  .hub-hero-stack,
  .hub-story-body,
  .hub-spotlight-body,
  .hub-newsletter-shell,
  .hub-page-banner,
  .hub-event-card,
  .hub-program-card,
  .hub-news-body,
  .hub-post-body,
  .hub-action-card,
  .hub-contact-panel,
  .hub-about-panel {
    padding: 22px;
  }

  .hub-hero-stack h1 {
    font-size: clamp(2.4rem, 13vw, 3.7rem);
  }

  .hub-hero-tile[data-hub-tile="1"] {
    width: 40%;
    height: 28%;
  }

  .hub-hero-tile[data-hub-tile="2"] {
    width: 32%;
    height: 20%;
  }

  .hub-hero-tile[data-hub-tile="3"] {
    width: 28%;
    height: 22%;
  }

  .hub-gallery-grid {
    column-count: 1;
  }

  .hub-kicker {
    font-size: 0.72rem;
  }
}
