/* playusifc.com · design tokens per build brief section 4 */
:root {
  --navy: #1A1449;
  --red: #BD2B2B;
  --red-hover: #A82323;
  --ink: #111114;
  --paper: #FBFBFD;
  --slate: #6E6E78;
  --rule: #E4E4EA;
  --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ink); }

/* ---------- type scale ---------- */
.display {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h1.display, h2.display { margin: 0; }
.h2, h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.h3, h3 { font-size: 1.5rem; font-weight: 500; line-height: 1.3; }
.lead { font-size: 1.375rem; font-weight: 400; line-height: 1.5; max-width: 62ch; }
.body-copy { max-width: 68ch; }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
}
.caption { font-size: 0.875rem; font-weight: 400; color: var(--slate); }

/* ---------- layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.band { padding-top: 160px; padding-bottom: 160px; }
.band-navy { background: var(--navy); color: var(--white); }
.band-navy .eyebrow { color: rgba(255,255,255,0.7); }
.narrow { max-width: 68ch; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }

@media (max-width: 1024px) { .band { padding-top: 96px; padding-bottom: 96px; } }
@media (max-width: 640px)  { .band { padding-top: 72px; padding-bottom: 72px; } }

/* ---------- buttons and links ---------- */
.btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms;
}
.btn:hover { background: var(--red-hover); }
.btn:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

.text-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 200ms;
}
.text-link:hover { color: var(--slate); }
.text-link:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* ---------- navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  background: rgba(251, 251, 253, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-crest { height: 32px; width: auto; }
.nav-crest-link { display: flex; align-items: center; }
.nav-links { display: flex; gap: 32px; margin-left: auto; list-style: none; }
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  transition: color 200ms;
}
.nav-links a:hover { color: var(--slate); }
.nav-btn {
  font-size: 0.9375rem;
  padding: 10px 20px;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--paper);
  padding: 24px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; height: 48px; }
.mobile-menu-close { background: none; border: none; font-size: 1.75rem; line-height: 1; cursor: pointer; color: var(--ink); padding: 8px; }
.mobile-menu-links { list-style: none; margin-top: 48px; flex: 1; }
.mobile-menu-links li { margin-bottom: 24px; }
.mobile-menu-links a {
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}
.mobile-menu .btn { align-self: flex-start; margin-bottom: 32px; }

@media (max-width: 1120px) {
  .nav-links, .nav .nav-btn { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- photo slots (placeholders until photography loads) ---------- */
.slot {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.slot img.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slot .ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(40%, 320px);
  opacity: 0.08;
}
.slot .slot-name {
  position: absolute;
  left: 16px;
  bottom: 12px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 12px;
  color: var(--slate);
  z-index: 2;
}
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-4x5 { aspect-ratio: 4 / 5; }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-3x2 { aspect-ratio: 3 / 2; }

/* ---------- full-bleed photo band with scrim ---------- */
.photo-band {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.photo-band.full-viewport { min-height: 100svh; }
.photo-band .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,73,0.78) 0%, rgba(26,20,73,0.38) 45%, rgba(26,20,73,0) 72%);
  z-index: 1;
}
.photo-band .band-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 62ch;
  padding: 0 24px 96px;
}
.photo-band .band-text .eyebrow { color: rgba(255,255,255,0.8); }
.photo-band .band-text .lead { margin: 16px auto 0; }
@media (max-width: 640px) { .photo-band .band-text { padding-bottom: 64px; } }

/* ---------- video band ---------- */
.video-band { background: var(--navy); }
.video-band video {
  display: block;
  width: 100%;
  height: 85svh;
  object-fit: cover;
}
@media (max-width: 640px) { .video-band video { height: 75svh; } }

/* ---------- club logo marquee ---------- */
.clubs-band { padding-top: 96px; padding-bottom: 96px; overflow: hidden; }
.clubs-band .eyebrow { color: rgba(255,255,255,0.65); text-align: center; display: block; }
.marquee { overflow: hidden; padding: 28px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 55s linear infinite; will-change: transform; backface-visibility: hidden; }
.marquee-set { display: flex; align-items: center; gap: 88px; padding-right: 88px; }
.marquee-set img { height: 64px; width: auto; flex: none; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .marquee-set { gap: 48px; padding-right: 48px; }
  .marquee-set img { height: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee-set { flex-wrap: wrap; justify-content: center; row-gap: 40px; }
  .marquee-set[aria-hidden="true"] { display: none; }
}

/* ---------- photo rows ---------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .duo, .trio { grid-template-columns: 1fr; }
}

/* ---------- about portrait ---------- */
.about-portrait { max-width: 440px; }

/* ---------- statistics ---------- */
.stat-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  text-align: center;
}
.stat .num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.stat .caption { margin-top: 8px; }
@media (max-width: 640px) {
  .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; }
}

/* ---------- route band ---------- */
.route-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 24px;
}
.route-row::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 38%;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}
.route-stop { position: relative; z-index: 1; background: var(--paper); padding: 0 20px; text-align: center; }
.route-stop .code {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.route-stop .caption { margin-top: 4px; }
@media (max-width: 640px) {
  .route-row { flex-direction: column; gap: 40px; }
  .route-row::before { display: none; }
}

/* ---------- facts band (home band 5) ---------- */
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px 96px;
}
.facts-grid p { font-size: 1.375rem; font-weight: 400; line-height: 1.5; }
.facts-grid strong { font-weight: 600; }
@media (max-width: 900px) { .facts-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ---------- Stockholm partners ---------- */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 56px 72px;
}
.partner { text-align: center; width: 110px; }
.partner img { height: 72px; width: auto; margin: 0 auto 12px; }
.partner .caption { display: block; }
@media (max-width: 640px) {
  .partners-row { gap: 40px 32px; }
  .partner { width: 88px; }
  .partner img { height: 56px; }
}

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gallery .g-large { grid-column: span 4; }
.gallery .g-small { grid-column: span 2; }
@media (min-width: 901px) {
  .gallery .g-large { grid-column: span 2; grid-row: span 2; }
  .gallery .g-small { grid-column: span 1; }
  .gallery .g-large .slot { height: 100%; aspect-ratio: auto; }
}
@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery .g-large, .gallery .g-small { grid-column: span 1; }
}

/* ---------- interior page intro ---------- */
.page-intro { padding-top: 128px; padding-bottom: 96px; }
.page-intro .eyebrow { margin-bottom: 16px; }
.page-intro .lead { margin-top: 24px; }
@media (max-width: 640px) { .page-intro { padding-top: 72px; padding-bottom: 56px; } }

/* ---------- editorial timeline (/tour) ---------- */
.ratio-16x10 { aspect-ratio: 16 / 10; }
.tl2 { display: flex; flex-direction: column; gap: 140px; }
.stop2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
}
.stop2 .s-media { grid-column: 1 / 9; grid-row: 1; margin-left: calc((min(1200px, 100vw - 48px) - 100vw) / 2); }
.stop2.flip .s-media { margin-left: 0; margin-right: calc((min(1200px, 100vw - 48px) - 100vw) / 2); }
.s-index {
  display: block;
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--rule);
  margin-bottom: 20px;
}
.stop2 .s-text {
  grid-column: 8 / 13;
  grid-row: 1;
  z-index: 2;
  background: var(--paper);
  padding: 0 0 48px 48px;
  margin-top: 0;
}
.stop2.flip .s-media { grid-column: 5 / 13; }
.stop2.flip .s-text {
  grid-column: 1 / 6;
  padding: 0 48px 48px 0;
}
.s-index { padding-top: 8px; }
.stop2 .s-text .eyebrow { margin-bottom: 12px; }
.stop2 .s-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.stop2 .s-text p:not(.eyebrow) { max-width: 42ch; }
.stop2-plain {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 48px 0;
}
.stop2-plain .sp-code { grid-column: 1 / 5; display: flex; align-items: baseline; gap: 16px; }
.stop2-plain .sp-code .code {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stop2-plain .sp-text { grid-column: 5 / 11; }
.stop2-plain .sp-text .eyebrow { margin-bottom: 6px; }
@media (max-width: 900px) {
  .tl2 { gap: 72px; }
  .stop2, .stop2.flip { display: block; }
  .stop2 .s-text, .stop2.flip .s-text { padding: 24px 0 0; margin-top: 0; }
  .stop2-plain { display: block; padding: 32px 0; }
  .stop2-plain .sp-code { margin-bottom: 12px; }
}

/* ---------- definition list (/eligibility) ---------- */
.def-list { max-width: 68ch; }
.def-list .def-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
.def-list .def-row:first-child { border-top: 1px solid var(--rule); }
.def-list dt { font-weight: 600; font-size: 1rem; }
@media (max-width: 640px) {
  .def-list .def-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ---------- cost page ---------- */
.cost-cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 64px;
  max-width: 900px;
}
.cost-cols .col-rule { background: var(--rule); }
.cost-cols ul { list-style: none; margin-top: 24px; }
.cost-cols li { padding: 10px 0; }
@media (max-width: 768px) {
  .cost-cols { grid-template-columns: 1fr; gap: 48px; }
  .cost-cols .col-rule { height: 1px; width: 100%; }
}
.cancel-table { width: 100%; max-width: 68ch; border-collapse: collapse; margin-top: 24px; }
.cancel-table th {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate);
  padding: 0 24px 16px 0;
  border-bottom: 1px solid var(--rule);
}
.cancel-table td {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 68ch; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:first-child { border-top: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  padding: 28px 48px 28px 0;
  cursor: pointer;
  position: relative;
}
.faq-q:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.faq-q .chev {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 300ms;
}
.faq-item.open .faq-q .chev { transform: translateY(-30%) rotate(225deg); }
.faq-a { display: none; padding: 0 0 28px; max-width: 62ch; }
.faq-item.open .faq-a { display: block; }
@media (max-width: 640px) { .faq-q { font-size: 1.25rem; } }

/* ---------- apply form ---------- */
.apply-wrap { max-width: 560px; margin: 0 auto; padding: 0 24px; }
.form-field { margin-bottom: 28px; }
.form-field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-field .optional { color: var(--slate); font-weight: 400; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1.125rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 14px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border: 2px solid var(--navy);
  padding: 13px;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.radio-group { display: flex; gap: 24px; flex-wrap: wrap; }
.radio-group label { display: flex; align-items: center; gap: 8px; font-weight: 400; font-size: 1.125rem; margin: 0; }
.field-error { color: var(--red); font-size: 0.875rem; margin-top: 6px; display: none; }
.form-field.has-error .field-error { display: block; }
.form-field.has-error input, .form-field.has-error select { border-color: var(--red); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- footer ---------- */
.footer { background: var(--navy); color: var(--white); padding: 96px 0 48px; }
.footer .container { display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
.footer-crest { height: 40px; width: auto; }
.footer-badges { display: flex; align-items: center; gap: 28px; }
.footer-mls { height: 40px; width: auto; }
.footer-legal { align-self: stretch; }
.footer-row { display: flex; flex-wrap: wrap; gap: 16px 32px; }
.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 200ms;
}
.footer a:hover { color: var(--white); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

/* ---------- motion ---------- */
.rise {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.rise.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { opacity: 1; transform: none; transition: none; }
  .faq-q .chev { transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ---------- utility spacing ---------- */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mt-96 { margin-top: 96px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-48 { margin-bottom: 48px; }

/* ---------- announcement bar ---------- */
.abar { background: var(--red); text-align: center; font-size: 0.85rem; letter-spacing: 0.01em; }
.abar a { display: block; padding: 10px 20px; color: var(--white); text-decoration: none; }
.abar-link { font-weight: 600; white-space: nowrap; }
.abar a:hover .abar-link { text-decoration: underline; }

/* ---------- pinned stats ----------
   Default (no JS, or reduced motion): the old static stat row.
   With .pin-on (added by site.js): section pins, one figure at a time. */
.pinstats { padding: 128px 24px; text-align: center; }
.pinstats .eyebrow { display: block; text-align: center; }
.pin-frames { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; margin-top: 48px; }
.pin-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pin-frame .caption { margin-top: 8px; }
@media (max-width: 640px) {
  .pinstats:not(.pin-on) .pin-frames { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px; }
}
.pinstats.pin-on { height: 330vh; height: 330svh; padding: 0; }
.pinstats.pin-on .pin-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pinstats.pin-on .pin-frames { display: block; position: relative; width: 100%; height: min(38vh, 320px); margin-top: 32px; }
.pinstats.pin-on .pin-frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 450ms ease-out, transform 450ms ease-out;
}
.pinstats.pin-on .pin-frame.on { opacity: 1; transform: none; }
.pinstats.pin-on .pin-num { font-size: clamp(4rem, 13vw, 9.5rem); letter-spacing: -0.03em; }

/* ---------- club wall: monochrome, one logo per row rotates to colour ---------- */
.marquee-set img { filter: grayscale(1) brightness(4); opacity: 0.55; transition: filter 240ms ease, opacity 240ms ease; }
.marquee-set img:hover, .marquee-set img.lit { filter: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .marquee-set img { filter: none; opacity: 1; }
}

/* ---------- full-viewport closing statement ---------- */
.closing {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
}
.closing-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.closing-inner { position: relative; }
.closing .display { color: var(--white); }

/* ---------- testimonials ---------- */
.quote { max-width: 820px; margin: 0 auto; }
.quote + .quote { margin-top: 88px; padding-top: 88px; border-top: 1px solid var(--rule); }
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--ink);
}
.quote blockquote p + p { margin-top: 18px; }
.quote-name { font-weight: 600; margin-top: 28px; }
.quote .caption { margin-top: 4px; }
@media (max-width: 640px) {
  .quote + .quote { margin-top: 64px; padding-top: 64px; }
  .quote blockquote p { font-size: 1.0625rem; }
}

/* ---------- fit-mobile photo band: whole image visible on phones ---------- */
@media (max-width: 700px) {
  .photo-band.fit-mobile { min-height: 0; display: block; }
  .photo-band.fit-mobile img.photo { position: relative; inset: auto; height: auto; display: block; }
  .photo-band.fit-mobile .scrim, .photo-band.fit-mobile .ghost, .photo-band.fit-mobile .slot-name { display: none; }
  .photo-band.fit-mobile .band-text:empty, .photo-band.fit-mobile .band-text { display: none; }
}
