/* ============================================================
   Physics of Living Systems — UNIGE — v2 (mobile-first)
   ============================================================ */

:root {
  --blue: #0055A4;
  --blue-dark: #003d7a;
  --teal: #00838F;
  --dark: #1a1a1a;
  --grey-dark: #333;
  --grey-mid: #666;
  --grey-light: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --max: 1200px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-weight: 700; line-height: 1.15; }

/* ========== HEADER (compact) ========== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-link img { height: 40px; width: auto; max-width: none; }
.faculty-link img { height: 36px; width: auto; max-width: none; }
.site-title img { height: 36px; width: auto; max-width: none; }
.faculty-link, .site-title { display: flex; align-items: center; text-decoration: none; }

/* Vertical dividers between logos */
.faculty-link { padding-left: 8px; border-left: 1px solid var(--border); }
.site-title { padding-left: 8px; border-left: 1px solid var(--border); }

/* Desktop nav */
nav.main-nav {
  display: flex;
  gap: 0;
  align-items: center;
}
nav.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-dark);
  padding: 8px 14px;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
  white-space: nowrap;
}
nav.main-nav a:first-child { border-left: 1px solid var(--border); }
nav.main-nav a:hover { color: var(--blue); }

/* Hamburger button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  color: var(--grey-dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--blue); }

/* ========== HERO (compact) ========== */
.hero-compact {
  background: linear-gradient(135deg, #001f3f 0%, #003366 40%, #00838F 100%);
  padding: 6px 0;
}
.hero-compact-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
}
.hero-compact-inner .hero-logo {
  height: 180px;
  width: auto;
  flex: none;
}
.hero-subtitle {
  display: block;
  font-size: 24px;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 2px;
}
.hero-compact-inner h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 4px;
  color: var(--white);
}
.hero-compact-inner p {
  font-size: 18px;
  opacity: 0.85;
  margin: 0;
  color: var(--white);
}

/* ========== NEWS & EVENTS STRIP ========== */
.news-events-strip { padding: 48px 0; }
.news-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.ne-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}
.ne-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.ne-item:first-of-type { border-top: 1px solid var(--border); }
.ne-item p { font-size: 15px; line-height: 1.65; color: var(--grey-dark); margin: 0; }
.ne-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}
.ne-link:hover { text-decoration: underline; }
.ne-item-link {
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: background 0.15s;
}
.ne-item-link:hover {
  background: rgba(0,85,164,0.05);
}
.ne-item-link p {
  color: var(--grey-dark);
}
.ne-readmore {
  text-align: right;
  margin-top: 16px;
}
.ne-readmore a {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.ne-readmore a:hover { text-decoration: underline; }

/* ========== SECTION SHARED ========== */
section { padding: 56px 0; }
section.grey-bg { background: var(--grey-light); }
.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
  max-width: 650px;
}
.section-text {
  font-size: 16px;
  color: var(--grey-dark);
  max-width: 700px;
  line-height: 1.75;
}
.section-text.full-width { max-width: none; }
.text-link { color: var(--blue); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.subsection-title {
  font-size: 20px;
  font-weight: 700;
  margin: 36px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}

/* ========== RESEARCH BUTTON ========== */
.hero-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.research-btn {
  margin-top: 20px;
  background: var(--blue);
  color: var(--white);
}
.research-btn:hover { background: var(--blue-dark); color: var(--white); }

/* ========== PI TILES (redesigned) ========== */
.pi-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pi-tile {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.pi-tile:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.pi-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.pi-tile-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  background: var(--grey-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pi-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  max-width: none;
}
.pi-initials {
  font-size: 20px;
  font-weight: 300;
  color: var(--grey-mid);
}
.pi-tile-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
}
.pi-tile-content {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex: 1;
}
.pi-tile-research {
  width: 90px;
  min-height: 90px;
  object-fit: cover;
  border-radius: 3px;
  flex: none;
  max-width: none;
  align-self: stretch;
}
.pi-tile-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
.pi-tile-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey-mid);
  text-align: right;
}
.pi-tile-bottom {
  text-align: right;
  margin-top: 8px;
}

/* ========== PURPOSE / RESEARCH PAGE ========== */
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.purpose-right p { margin-bottom: 14px; }
.purpose-right p:last-child { margin-bottom: 0; }
.research-heading {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 16px;
  color: var(--dark);
}

/* ========== BANNER ========== */
.banner { background: var(--blue); color: var(--white); padding: 24px 0; }

/* ========== VISION ========== */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.vision-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  padding: 28px;
}
.vision-card p { font-size: 16px; line-height: 1.75; color: var(--grey-dark); }

/* ========== PEOPLE (old grid — kept for team page) ========== */
.team-intro { margin-bottom: 36px; }
.people-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.researcher-card {
  background: var(--white);
  border: 1px solid var(--border);
  text-align: center;
  padding: 24px 16px;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.researcher-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.researcher-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grey-light);
  border: 2px solid var(--border);
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-mid); font-size: 24px; font-weight: 300;
  overflow: hidden;
}
.researcher-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; max-width: none; }
.researcher-card h3 { font-size: 15px; margin-bottom: 4px; font-weight: 600; }
.researcher-card .role { font-size: 12px; color: var(--grey-mid); }
.researcher-card.empty { border-style: dashed; }
.researcher-card.empty .researcher-avatar { border-style: dashed; }

/* ========== RESEARCH BLOCKS (what we do page) ========== */
.research-block {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.research-block:first-child { border-top: 1px solid var(--border); }
.research-block-reverse { flex-direction: row-reverse; }
.research-block-image { flex: 0 0 42%; max-width: 42%; overflow: hidden; border-radius: 4px; }
.research-block-image img { width: 100%; height: 240px; object-fit: cover; }
.research-block-text { flex: 1; }
.research-block-text h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.research-block-text h3 a { color: var(--blue); text-decoration: none; }
.research-block-text h3 a:hover { text-decoration: underline; }
.research-block-text p { font-size: 15px; line-height: 1.7; color: var(--grey-dark); }

/* ========== PUBLICATIONS ========== */
.publication-list { list-style: none; padding: 0; }
.publication-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-dark);
}
.publication-item:first-child { border-top: 1px solid var(--border); }
.pub-title { font-style: italic; color: var(--blue); text-decoration: none; }
.pub-title:hover { text-decoration: underline; }
.pub-year {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.pub-year:first-of-type { margin-top: 0; }

/* ========== NEWS PAGE ========== */
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.news-col h3 { font-size: 18px; margin-bottom: 20px; }
.news-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.news-item:first-of-type { border-top: 1px solid var(--border); }
.news-date { font-size: 13px; color: var(--grey-mid); margin-bottom: 4px; }
.news-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.news-link { font-size: 13px; color: var(--blue); text-decoration: none; font-weight: 600; }
.news-link:hover { text-decoration: underline; }
.news-empty { padding: 16px 0; color: var(--grey-mid); font-size: 14px; font-style: italic; }

/* ========== CONFERENCES ========== */
.conf-list { display: flex; flex-direction: column; }
.conf-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.conf-item:first-child { border-top: 1px solid var(--border); }
.conf-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.conf-name a { color: var(--blue); text-decoration: none; }
.conf-name a:hover { text-decoration: underline; }
.conf-details { display: flex; flex-direction: column; gap: 3px; }
.conf-detail { font-size: 14px; color: var(--grey-dark); }
.conf-deadline-open { color: var(--teal); font-weight: 600; }
.conf-deadline-passed { color: var(--grey-mid); text-decoration: line-through; }

/* ========== CHARTER ========== */
.charter-content h1 { text-align: center; font-size: 26px; margin-bottom: 6px; }
.charter-content h2 { text-align: center; font-size: 20px; margin-bottom: 28px; font-weight: 400; }
.charter-content h3 { font-size: 18px; margin-top: 28px; margin-bottom: 14px; }
.charter-content ol { margin-left: 24px; margin-bottom: 14px; }
.charter-content li { margin-bottom: 6px; font-size: 15px; line-height: 1.7; color: var(--grey-dark); }
.charter-content ol ol { margin-top: 6px; }

/* ========== CAREER & EDUCATION ========== */
.education-list {
  margin: 14px 0 20px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--grey-dark);
}
.education-list li { margin-bottom: 6px; }
.project-list { border-top: 1px solid var(--border); }
.project-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-dark);
}
.job-list { display: flex; flex-direction: column; }
.job-item { padding: 24px 0; border-bottom: 1px solid var(--border); }
.job-item:first-child { border-top: 1px solid var(--border); }
.job-type { font-size: 18px; font-weight: 700; color: var(--blue); margin-bottom: 14px; }
.job-details { width: 100%; border-collapse: collapse; }
.job-details td {
  padding: 6px 0;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-dark);
  border-bottom: 1px solid #f0f0f0;
}
.job-label { font-weight: 600; color: var(--dark); width: 160px; padding-right: 20px !important; }

/* ========== SUB-PAGE HEADER BAR ========== */
.page-header-bar {
  background: linear-gradient(135deg, #001f3f 0%, #003366 40%, #00838F 100%);
  padding: 36px 0;
}
.page-main-title {
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 36px);
}
.page-body {
  padding-top: 36px;
  padding-bottom: 36px;
  min-height: 250px;
}
.page-body p { margin-bottom: 14px; font-size: 16px; line-height: 1.75; color: var(--grey-dark); }

/* ========== FOOTER ========== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 48px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand { display: flex; align-items: stretch; }
.footer-brand img { height: 100%; width: auto; max-height: 150px; }
.footer-brand a { text-decoration: none; }
.footer-brand-text { display: block; font-size: 13px; color: var(--white); opacity: 0.7; line-height: 1.5; }
.footer-brand-text:hover { opacity: 1; }
.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.6;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  text-decoration: none;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 8px;
}
.footer-col a:hover { opacity: 1; }
.footer-col p { font-size: 13px; opacity: 0.7; margin-bottom: 4px; color: rgba(255,255,255,0.85); }
.footer-col div { color: rgba(255,255,255,0.85); font-size: 13px; }
.footer-bottom {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  nav.main-nav { display: none; }
  .hamburger { display: block; }
  .header-inner { padding: 0 12px; height: 52px; }
  .logo-link img { height: 32px; }
  .faculty-link img { height: 28px; }
  .site-title img { height: 28px; }
  .news-events-grid { grid-template-columns: 1fr; gap: 32px; }
  .pi-tiles { grid-template-columns: repeat(2, 1fr); }
  .purpose-grid, .vision-grid, .news-grid { grid-template-columns: 1fr; gap: 24px; }
  .people-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 40px 0; }
  .hero-compact { padding: 20px 0; }
  .hero-compact-inner .hero-logo { height: 56px; }
  .research-block, .research-block-reverse { flex-direction: column; }
  .research-block-image { flex: none; max-width: 100%; }
}
@media (max-width: 600px) {
  .pi-tiles { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .header-left { gap: 4px; }
  .faculty-link { padding-left: 4px; }
  .site-title { padding-left: 4px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ========== PAGE BUTTONS (below title bar) ========== */
.page-buttons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.page-btn {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.page-btn:hover {
  background: rgba(255,255,255,0.3);
}

/* ========== NEWS ITEMS WITH IMAGES (homepage) ========== */
.ne-item-inner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ne-item-with-image {
  display: flex;
}
.ne-item-image {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
  flex: none;
  max-width: none;
}

/* ========== NEWS PAGE ITEMS ========== */
.news-page-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.news-page-item:first-child {
  border-top: 1px solid var(--border);
}
.news-page-item.ne-item-link {
  cursor: pointer;
}
.news-page-item.ne-item-link:hover {
  background: rgba(0,85,164,0.05);
}
.news-page-item-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.news-page-with-image {
  display: flex;
}
.news-page-image {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 3px;
  flex: none;
  max-width: none;
}
.news-page-content {
  flex: 1;
}
.news-page-date {
  font-size: 13px;
  color: var(--grey-mid);
  margin-bottom: 6px;
}
.news-page-content p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey-dark);
  margin: 0;
}

/* ========== EVENTS PAGE ========== */
.event-card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.event-card:first-of-type {
  border-top: 1px solid var(--border);
}
.event-past {
  opacity: 0.7;
}
.event-past:hover {
  opacity: 1;
}
.event-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  flex: none;
}
.event-badge-conf {
  background: var(--blue);
  color: var(--white);
}
.event-badge-pols {
  background: var(--teal);
  color: var(--white);
}
.event-badge-lsss {
  background: #7B1FA2;
  color: var(--white);
}
.event-badge-seminar {
  background: var(--grey-dark);
  color: var(--white);
}
.event-badge-center {
  background: #E65100;
  color: var(--white);
}
.event-body {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.event-speaker-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  max-width: none;
}
.event-info {
  flex: 1;
}
.event-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.event-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  color: var(--grey-dark);
}
@media (max-width: 600px) {
  .event-card { flex-direction: column; gap: 8px; }
  .event-body { flex-direction: column; }
}

.deadline-highlight {
  color: #D84315;
  font-weight: 600;
}

/* ========== STAFF SCIENTISTS ========== */
.staff-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.staff-tile {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  display: block;
}
.staff-tile:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.staff-tile-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  background: var(--grey-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  max-width: none;
}
.staff-tile-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}
@media (max-width: 960px) {
  .staff-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .staff-tiles { grid-template-columns: 1fr; }
}
.staff-tile-empty {
  border-style: dashed;
}
.staff-photo-empty {
  border-style: dashed;
}

/* ========== PARALLAX IMAGE BANDS ========== */
.parallax-band {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
.parallax-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 50%,
    rgba(0,0,0,0.15) 100%
  );
}
@media (max-width: 960px) {
  .parallax-band {
    height: 200px;
    background-attachment: scroll;
  }
}
@media (prefers-reduced-motion: reduce) {
  .parallax-band {
    background-attachment: scroll;
  }
}