/* Lucknow Dance Hub, v5
   Loud white. Anton display, Instrument Sans body, Instrument Serif italic voice.
   One accent hue (magenta), two ink bands per page, two slow marquees.
   No rotation, no offset shadows, no stickers, radius stays 0. */

:root {
  --bg: #FFFFFF;
  --ink: #0B0B0C;
  --muted: #5C5C58;
  --line: #E5E5E1;
  --ink-band: #0B0B0C;
  --muted-inv: #A8A8A4;
  --line-inv: rgba(255, 255, 255, 0.16);
  --accent: #FF3D8A;
  --accent-deep: #B80D57;
  --ghost: #C9C9C4;

  --wrap: 1240px;
  --gut: 24px;
  --pad: 24px;

  --display: "Anton", Impact, "Franklin Gothic Medium", "Arial Narrow", sans-serif;
  --sans: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", Times, Georgia, serif;

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --head-h: 62px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, p, ul, ol, dl, dd, figure, blockquote {
  margin: 0;
  padding: 0;
}

ul, ol { list-style: none; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: var(--pad);
  top: 12px;
  z-index: 100;
  background: var(--ink);
  color: #FFFFFF;
  padding: 10px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Layout */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

section[id] { scroll-margin-top: calc(var(--head-h) + 12px); }

@media (min-width: 900px) {
  :root { --pad: 40px; }
  .grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: var(--gut);
  }
}

@media (min-width: 1200px) {
  body { font-size: 1.125rem; }
}

/* Type system */

.wordmark {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.4rem, 13vw, 11.5rem);
  line-height: 0.85;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.giant {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.75rem, 8.5vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.deck {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  line-height: 1.35;
}

.label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.prose { max-width: 66ch; }
.prose p + p { margin-top: 1.15em; }

.slash { color: var(--line); }
.slash--accent { color: var(--accent); }

.arrow {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
}

.arrow__mark {
  color: var(--accent-deep);
  transition: transform 250ms var(--ease);
}

.arrow--inv { color: #FFFFFF; }
.arrow--inv .arrow__mark { color: var(--accent); }
.arrow--ink .arrow__mark { color: var(--ink); }

.arrow:hover .arrow__mark { transform: translateX(6px); }

/* Header */

.head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--head-h);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.brand__est { color: var(--muted); }

.nav-toggle {
  border: 1px solid var(--ink);
  background: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 14px;
  cursor: pointer;
}

.nav {
  display: none;
}

.nav.is-open {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--ink);
  padding: 18px var(--pad) 26px;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav__list a {
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__list a:hover { color: var(--accent-deep); }
.nav__list a.is-current { text-decoration: underline; text-underline-offset: 5px; }

.nav .btn--nav { margin-top: 20px; }

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav__list {
    flex-direction: row;
    gap: 24px;
  }
  .nav .btn--nav { margin-top: 0; }
}

/* Buttons and conversion clusters */

.btn {
  display: inline-block;
  background: var(--ink);
  color: #FFFFFF;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 26px;
  transition: background-color 250ms var(--ease), color 250ms var(--ease);
}

.btn:hover {
  background: var(--accent);
  color: var(--ink);
}

.btn--nav {
  padding: 11px 16px;
  font-size: 0.6875rem;
}

.convert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 26px;
}

.convert__tel {
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: border-color 400ms var(--ease);
}

.convert__tel:hover { border-bottom-color: var(--ink); }

/* Hero */

.hero {
  min-height: 92svh;
  display: flex;
  align-items: stretch;
  padding-block: 40px 32px;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.hero__place { color: var(--muted); }

.wordmark__line {
  display: block;
  overflow: hidden;
  padding-block: 0.09em;
  margin-block: -0.07em;
}

.wordmark__in {
  display: block;
  animation: rise 650ms var(--ease-out) both;
}

.wordmark__in--accent { color: var(--accent); }

.wordmark__line:nth-child(2) .wordmark__in { animation-delay: 90ms; }
.wordmark__line:nth-child(3) .wordmark__in { animation-delay: 180ms; }

@keyframes rise {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

.hero__foot > * {
  animation: fade-up 550ms var(--ease-out) both;
  animation-delay: 930ms;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.hero__lede .deck { max-width: 34ch; }

.hero__jump { margin-top: 34px; }

.jump {
  text-decoration: none;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.jump__arrow {
  color: var(--accent-deep);
  transition: transform 250ms var(--ease);
}

.jump:hover .jump__arrow { transform: translateY(4px); }

@media (min-width: 900px) {
  .hero { padding-block: 56px 40px; }
  .hero__lede { grid-column: 1 / 7; }
  .hero__jump {
    grid-column: 10 / 13;
    align-self: end;
    justify-self: end;
    text-align: right;
    margin-top: 0;
  }
  .hero__foot { align-items: end; }
}

/* Stats ticker */

.ticker {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  padding-block: 20px;
  background: var(--bg);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker__seq {
  display: flex;
  flex: none;
  align-items: center;
}

.ticker__seq li {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.375rem, 2.6vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-inline-end: 0.55em;
}

.ticker__seq li .slash--accent { padding-inline-start: 0.35em; }

.ticker:hover .ticker__track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */

.section { padding-block: 72px; }

@media (min-width: 900px) {
  .section { padding-block: 112px; }
  .section--floors { padding-block: 128px; }
  .section--faculty { padding-block: 96px 128px; }
}

.eyebrow { margin-bottom: 22px; }
.eyebrow--inv { color: var(--muted-inv); }
.eyebrow--solo { margin-bottom: 32px; }

.shead__h { margin-bottom: 22px; }

@media (min-width: 900px) {
  .shead__eyebrow,
  .shead .eyebrow { grid-column: 1 / 13; }
  .shead__h { grid-column: 1 / 7; margin-bottom: 0; }
  .shead__body { grid-column: 7 / 13; }
  .shead--inv .room__deck { grid-column: 7 / 13; }
}

/* About */

.quote {
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--ink);
}

.quote__body p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  line-height: 1.28;
  text-wrap: balance;
}

.quote__src { margin-top: 18px; }

@media (min-width: 900px) {
  .quote__body { grid-column: 1 / 10; }
  .quote__src { grid-column: 10 / 13; align-self: end; }
}

.styles-block { margin-top: 56px; }
.styles-block__k { margin-bottom: 16px; }

.styles {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 1.0625rem;
}

.styles li { display: inline-flex; gap: 12px; }

.styles li:not(:last-child)::after {
  content: "/";
  color: var(--accent-deep);
}

@media (min-width: 900px) {
  .styles-block__k { grid-column: 1 / 3; margin-bottom: 0; }
  .styles { grid-column: 3 / 13; }
}

/* Screening room, ink band */

.room {
  width: 100%;
  background: var(--ink-band);
  color: #FFFFFF;
  padding-block: 72px;
}

@media (min-width: 900px) {
  .room { padding-block: 112px; }
}

.room :focus-visible { outline-color: #FFFFFF; }

.room__h { margin-bottom: 18px; }
.room__deck { color: var(--muted-inv); max-width: 34ch; }

@media (min-width: 900px) {
  .room__h { grid-column: 1 / 7; margin-bottom: 0; }
}

.room__lead {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  margin-top: 48px;
}

.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #141416;
}

.facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: block;
}

.facade__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 350ms var(--ease), filter 350ms var(--ease);
}

.facade:hover .facade__img,
.facade:focus-visible .facade__img {
  transform: scale(1.03);
  filter: saturate(1);
}

.facade__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 350ms var(--ease);
}

.facade__play::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--ink);
}

.facade:hover .facade__play,
.facade:focus-visible .facade__play { transform: scale(1.08); }

@media (min-width: 700px) {
  .facade__play {
    width: 72px;
    height: 72px;
    margin: -36px 0 0 -36px;
  }
  .facade__play::after { border-width: 11px 0 11px 19px; }
}

.video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video__cap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 16px;
}

.video__title {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.35;
}

.video__meta {
  font-size: 0.8125rem;
  color: var(--muted-inv);
}

.video__cap--lead { margin-bottom: 64px; }

.video:hover .video__title {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
}

.video__title {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 400ms var(--ease);
}

.videos {
  row-gap: 48px;
}

@media (min-width: 900px) {
  .videos > * { grid-column: span 6; }
}

.more { margin-top: 8px; }

@media (min-width: 900px) {
  .more { align-self: center; }
}

/* Floors */

.floors { margin-top: 56px; }

.floor {
  padding-block: 28px;
  border-top: 1px solid var(--ink);
  row-gap: 14px;
}

.floors > .floor:last-child { border-bottom: 1px solid var(--ink); }

.floor__num {
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ghost);
  -webkit-text-stroke: 1.5px var(--ghost);
  -webkit-text-fill-color: transparent;
  transition: color 200ms var(--ease), -webkit-text-stroke-color 200ms var(--ease);
}

.floor__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.floor__desc {
  color: var(--muted);
  margin-top: 10px;
  max-width: 46ch;
  transition: color 200ms var(--ease);
}

.floor__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.floor__meta dd {
  font-size: 0.9375rem;
  line-height: 1.4;
  transition: color 200ms var(--ease);
}

.floor__meta .label { transition: color 200ms var(--ease); }

.note {
  color: var(--muted);
  margin-top: 34px;
  max-width: 60ch;
}

@media (min-width: 900px) {
  .floor {
    padding-block: 36px;
    padding-inline: 16px;
    margin-inline: -16px;
    align-items: start;
    transition: background-color 200ms var(--ease);
  }
  .floor__num { grid-column: 1 / 3; font-size: 3.5rem; }
  .floor__main { grid-column: 3 / 9; }
  .floor__meta {
    grid-column: 9 / 13;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 16px;
  }
  .floor:hover { background: var(--accent); }
  .floor:hover .floor__desc,
  .floor:hover .floor__meta .label,
  .floor:hover .floor__meta dd { color: var(--ink); }
  .floor:hover .floor__num {
    color: var(--ink);
    -webkit-text-stroke-color: var(--ink);
  }
  .note { grid-column: 3 / 9; }
}

/* Mid page CTA band, magenta */

.cta {
  width: 100%;
  background: var(--accent);
  color: var(--ink);
  padding-block: 56px;
}

@media (min-width: 900px) {
  .cta { padding-block: 88px; }
}

.cta :focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

.cta__eyebrow {
  color: var(--ink);
  margin-bottom: 20px;
}

.cta__h { margin-bottom: 26px; }

.cta__note { max-width: 46ch; }

.convert--cta { margin-top: 22px; }

.cta__tel {
  font-size: 1.375rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.btn--cta:hover {
  background: #FFFFFF;
  color: var(--ink);
}

.cta__more { margin-top: 26px; }
.cta__more .arrow { color: var(--ink); }

@media (min-width: 900px) {
  .cta__eyebrow { grid-column: 1 / 13; }
  .cta__h { grid-column: 1 / 7; margin-bottom: 0; }
  .cta__act { grid-column: 7 / 13; }
}

/* Portraits, shared framing system carried over from v4.
   --z  image width as a multiple of the frame width
   --fx --fy  the face point, as a fraction of the source image
   --ax --ay  where that face point sits inside the frame */

.fac__frame,
.portrait__frame {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--line);
}

.fac__frame::after,
.portrait__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.fac__img,
.portrait__img {
  position: absolute;
  left: var(--ax, 50%);
  top: var(--ay, 38%);
  width: calc(var(--z, 1) * 100%);
  height: auto;
  max-width: none;
  transform-origin: calc(var(--fx) * 100%) calc(var(--fy) * 100%);
  transform: translate(calc(var(--fx) * -100%), calc(var(--fy) * -100%));
}

.fac__img {
  filter: grayscale(1) contrast(1.03);
  transition: filter 350ms var(--ease);
}

.fac__fig:hover .fac__img { filter: grayscale(0) contrast(1.03); }

.portrait--color .portrait__img { filter: none; }

.portrait__cap { margin-top: 14px; }

/* Founder section */

.founder { row-gap: 32px; align-items: center; }

.founder__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.founder__role { margin-top: 14px; }
.founder__bio { margin-top: 22px; }

.founder__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  margin-top: 28px;
}

.founder__ig {
  color: var(--accent-deep);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

@media (min-width: 900px) {
  .founder .portrait { grid-column: 1 / 6; }
  .founder__text { grid-column: 7 / 13; }
}

/* Faculty marquee */

.mq {
  width: 100%;
  overflow: hidden;
  padding-block: 12px;
  margin-top: 48px;
}

.mq__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.mq__set {
  display: flex;
  flex: none;
  gap: 20px;
  padding-inline-end: 20px;
}

.fac {
  width: clamp(232px, 24vw, 300px);
  flex: none;
}

.fac__cap {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 14px;
}

.fac__name {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.mq:hover .mq__track,
.mq:focus-within .mq__track { animation-play-state: paused; }

@media (min-width: 700px) {
  .mq__track { animation-duration: 55s; }
  .mq__set { gap: 28px; padding-inline-end: 28px; }
}

/* Contact */

.details { margin-top: 44px; }

.details__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding-block: 16px;
  border-top: 1px solid var(--line);
}

.details__row:last-child { border-bottom: 1px solid var(--line); }

.details__row dd a { text-decoration: none; border-bottom: 1px solid var(--line); }
.details__row dd a:hover { border-bottom-color: var(--ink); }

.convert--contact { margin-top: 30px; }

@media (min-width: 620px) {
  .details__row {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 0 24px;
    align-items: baseline;
  }
}

/* Founder page */

.fhero { padding-block: 56px 72px; }

@media (min-width: 900px) {
  .fhero { padding-block: 80px 112px; }
}

.fhero__line { display: block; }
.fhero__role { color: var(--muted); margin-top: 20px; }

.fhero__body { margin-top: 56px; row-gap: 40px; }

.fhero__ig { margin-top: 26px; }

@media (min-width: 900px) {
  .fhero__body { align-items: center; }
  .fhero .portrait { grid-column: 1 / 6; }
  .fhero__text { grid-column: 7 / 13; }
}

.room--single { padding-block: 72px; }

@media (min-width: 900px) {
  .room--single { padding-block: 96px; }
  .videos--single .video--wide { grid-column: 2 / 12; }
}

.facts { margin-top: 48px; }

.fact {
  padding-block: 24px;
  border-top: 1px solid var(--ink);
  row-gap: 8px;
}

.facts > .fact:last-child { border-bottom: 1px solid var(--ink); }

.fact__k {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.fact__v { color: var(--muted); }

@media (min-width: 900px) {
  .fact__k { grid-column: 1 / 7; }
  .fact__v { grid-column: 7 / 13; align-self: center; }
}

/* Footer */

.foot {
  width: 100%;
  background: var(--ink-band);
  color: #FFFFFF;
  padding-block: 72px 34px;
}

.foot :focus-visible { outline-color: #FFFFFF; }

.foot__inner { row-gap: 44px; }

.foot__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.foot__meta { color: var(--muted-inv); margin-top: 14px; }

.foot__aside {
  color: var(--muted-inv);
  font-size: 0.9375rem;
  margin-top: 22px;
  max-width: 42ch;
}

.foot__k { color: var(--muted-inv); margin-bottom: 16px; }

.foot__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.foot__col a,
.foot__rule a {
  color: #FFFFFF;
  text-decoration: none;
  border-bottom: 1px solid var(--line-inv);
  padding-bottom: 2px;
  overflow-wrap: anywhere;
  transition: border-color 400ms var(--ease);
}

.foot__col a:hover,
.foot__rule a:hover { border-bottom-color: #FFFFFF; }

.foot__rule {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid var(--line-inv);
  font-size: 0.8125rem;
  color: var(--muted-inv);
}

.foot__convert {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 900px) {
  .foot__brand { grid-column: 1 / 5; }
  .foot__inner > nav.foot__col { grid-column: 5 / 7; }
  .foot__inner > div.foot__col:nth-of-type(2) { grid-column: 7 / 10; }
  .foot__inner > div.foot__col:nth-of-type(3) { grid-column: 10 / 13; }
}

/* Scroll reveals */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 550ms var(--ease-out), transform 550ms var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .ticker__track,
  .mq__track,
  .wordmark__in,
  .hero__foot > * {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .ticker { overflow-x: auto; }
  .ticker__track { width: 100%; }
  .ticker__seq--dupe { display: none; }
  .ticker__seq {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .mq {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-inline: var(--pad);
  }
  .mq__set--dupe { display: none; }

  .facade:hover .facade__img { transform: none; }
  .facade:hover .facade__play { transform: none; }
}
